using System; using System.Linq; using System.Text; using SqlSugar; namespace EC_SeckillInfo { /// /// /// [SugarTable("EC_CuttingPaperSpec")] public partial class EC_CuttingPaperSpec { public EC_CuttingPaperSpec(){ } /// /// Desc: /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey=true,IsIdentity=true)] public int Keyid {get;set;} /// /// Desc: /// Default: /// Nullable:False /// public Guid FirmId {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string SpecName {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string Width {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string Length {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public int? States {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string Remark {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string Operator {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public DateTime? OperateTime {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public int? IsPriority {get;set;} } }