using System; using System.Linq; using System.Text; using SqlSugar; namespace WMS.Core { /// /// /// [SugarTable("BASE_IMPORTRELATIONSHIP")] public partial class BASE_IMPORTRELATIONSHIP { public BASE_IMPORTRELATIONSHIP(){ } /// /// Desc:主键,GUID /// Default: /// Nullable:True /// public string F_NO {get;set;} /// /// Desc:业务类型文本 /// Default: /// Nullable:True /// public string BUSINESSTYPE {get;set;} /// /// Desc:表名 /// Default: /// Nullable:True /// public string TABLENAME {get;set;} /// /// Desc:结构,表头表体 /// Default: /// Nullable:True /// public string STRUCTURE {get;set;} /// /// Desc:关系字段 /// Default: /// Nullable:True /// public string RELATIONSHIPCEL {get;set;} /// /// Desc:开始标识,空值则代表 0 行 /// Default: /// Nullable:True /// public string F_STAKEY {get;set;} /// /// Desc:结束标识,空值则代表最后一行 /// Default: /// Nullable:True /// public string F_ENDKEY {get;set;} /// /// Desc:模板地址 /// Default: /// Nullable:True /// public string F_ECLMODELPATH {get;set;} /// /// Desc:业务类型值 /// Default: /// Nullable:True /// public decimal? BUSINSERTVAL {get;set;} /// /// Desc:Sheet名称 /// Default: /// Nullable:True /// public string SHEETNAME {get;set;} } }