using System; using System.Linq; using System.Text; using SqlSugar; namespace EC_SeckillInfo { /// ///厂商申请客户转换 /// [SugarTable("OA_CustomerApply")] public partial class OA_CustomerApply { public OA_CustomerApply(){ } /// /// Desc:主键ID /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey=true,IsIdentity=true)] public int Keyid {get;set;} /// /// Desc:厂商编号 /// Default: /// Nullable:True /// public Guid? FirmId {get;set;} /// /// Desc:厂商名称 /// Default: /// Nullable:True /// public string FirmName {get;set;} /// /// Desc:会员编号 /// Default: /// Nullable:True /// public Guid? MemberId {get;set;} /// /// Desc:会员名称 /// Default: /// Nullable:True /// public string MemberName {get;set;} /// /// Desc:客户编号 /// Default: /// Nullable:True /// public string CustomId {get;set;} /// /// Desc:客户名称 /// Default: /// Nullable:True /// public string CustomName {get;set;} /// /// Desc:状态 /// Default: /// Nullable:True /// public string Status {get;set;} /// /// Desc:最后修改时间 /// Default: /// Nullable:True /// public DateTime? LastUpdateTime {get;set;} /// /// Desc:操作人 /// Default: /// Nullable:True /// public string Operator {get;set;} /// /// Desc:备注 /// Default: /// Nullable:True /// public string Remark {get;set;} } }