using System; using System.Linq; using System.Text; using SqlSugar; namespace Sugar.Enties { /// /// /// [SugarTable("fa_alter")] public partial class fa_alter { public fa_alter(){ } /// /// Desc: /// Default: /// Nullable:False /// public string pk_altercode {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string voperatorid {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public DateTime? doperatordate {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string vapproveid {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public DateTime? dapprovedate {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string vapprovenote {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string billstatus {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string cmemo {get;set;} } }