///////////////////////////////////////////////////////////////////////////////// // 宁波拓通e智造平台 ToTong Next Builder // // https://git.tuotong-tech.com/tnb/tnb.server // ///////////////////////////////////////////////////////////////////////////////// using Newtonsoft.Json; namespace Tnb.Vengine.Domain; /// /// 导航属性 /// public class VmNavProp : VmBaseProp { #region Properties /// /// 导航属性模型id /// public string vmid { get; set; } = string.Empty; /// /// 导航关联类型 /// public eNavigateType navType { get; set; } /// /// 源表字段 /// public string refCode { get; set; } = VmSelectProp.MAIN_ALIES; /// /// 被引用字段 /// public string refField { get; set; } = string.Empty; /// /// 源表字段 /// public string fkField { get; set; } = string.Empty; ///// ///// 关联表表名 ///// //[JsonIgnore] //public string refTable { get; set; } = string.Empty; ///// ///// 被引用表(中间表) ///// //[JsonIgnore] //public string? midTable { get; set; } [JsonProperty(NullValueHandling = NullValueHandling.Ignore)] public Vmodel? naviModel { get; set; } #endregion Properties }