/////////////////////////////////////////////////////////////////////////////////
// 宁波拓通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;
///
/// 导航关联类型, 1:一对一,2:一对多
///
public eNavigateType navType { get; set; }
///
/// 源表代码,默认为m,表示与主表关联,可设置为中间表导航属性code,用来表示多对多
///
public string refCode { get; set; } = VmQueryParser.MAIN_ALIES;
///
/// 源表字段, 源表的外键字段
///
public string refProp { get; set; } = string.Empty;
///
/// 导航表字段
///
public string fkProp { get; set; } = string.Empty;
///
/// 关联模型
///
[JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
public Vmodel? naviModel { get; set; }
#endregion Properties
}