using System; using System.Linq; using System.Text; using SqlSugar; namespace SA.Entity.zxdcrm_Models { /// /// /// [SugarTable("a_pay3")] public partial class APay3 { public APay3(){ } /// /// Desc: /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey=true,IsIdentity=true,ColumnName="id")] public int Id {get;set;} /// /// Desc: /// Default: /// Nullable:False /// [SugarColumn(ColumnName="orderid")] public int Orderid {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="price")] public decimal? Price {get;set;} } }