using System; using System.Linq; using System.Text; using SqlSugar; namespace WMS.Core { /// /// /// [SugarTable("BASE_WAREHOUSETACTFUL")] public partial class BASE_WAREHOUSETACTFUL { public BASE_WAREHOUSETACTFUL(){ } /// /// Desc:编码 /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey=true)] public string F_NO {get;set;} /// /// Desc:是否暂停 /// Default: /// Nullable:True /// public int? F_ISSTOP {get;set;} /// /// Desc:是否删除 /// Default: /// Nullable:True /// public int? F_DELETE {get;set;} /// /// Desc:名称 /// Default: /// Nullable:True /// public string F_NAME {get;set;} /// /// Desc:备注 /// Default: /// Nullable:True /// public string F_MEMO {get;set;} /// /// Desc:类型 1 入库规则 2 出库规则 /// Default: /// Nullable:True /// public int? F_TYPE {get;set;} } }