using System; using System.Linq; using System.Text; using SqlSugar; namespace SA.Entity.zxdcrm_Models { /// ///客户表 /// [SugarTable("res_customer")] public partial class ResCustomer { public ResCustomer(){ } /// /// Desc: /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey=true,ColumnName="resid")] public string Resid {get;set;} /// /// Desc: /// Default: /// Nullable:False /// [SugarColumn(ColumnName="customerid")] public string Customerid {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="ctime")] public DateTime? Ctime {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="customerfrom")] public string? Customerfrom {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="lastnum3")] public string? Lastnum3 {get;set;} } }