using System; using System.Linq; using System.Text; using SqlSugar; namespace EC_SeckillInfo { /// ///软件客户 /// [SugarTable("Soft_Client")] public partial class Soft_Client { public Soft_Client(){ } /// /// Desc:编号 /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey=true,IsIdentity=true)] public int Keyid {get;set;} /// /// Desc:客户姓名 /// Default: /// Nullable:True /// public string ClientName {get;set;} /// /// Desc:客户状态,1正常/2注销 /// Default: /// Nullable:True /// public int? ClientStatus {get;set;} /// /// Desc:联系电话 /// Default: /// Nullable:True /// public string ClientPhone {get;set;} /// /// Desc:联系QQ /// Default: /// Nullable:True /// public string ClientQQ {get;set;} /// /// Desc:邮箱 /// Default: /// Nullable:True /// public string ClientEmail {get;set;} /// /// Desc:联系手机 /// Default: /// Nullable:True /// public string ClientMobile {get;set;} /// /// Desc:省 /// Default: /// Nullable:True /// public string ClientProvince {get;set;} /// /// Desc:市 /// Default: /// Nullable:True /// public string ClientCity {get;set;} /// /// Desc:区 /// Default: /// Nullable:True /// public string ClientCountry {get;set;} /// /// Desc:地址 /// Default: /// Nullable:True /// public string ClientAddress {get;set;} /// /// Desc:邮政编码 /// Default: /// Nullable:True /// public string ClientPostcode {get;set;} /// /// Desc:代理人编号 /// Default: /// Nullable:True /// public int? ClientProxyId {get;set;} /// /// Desc:客户类型,1自主激活/2管理添加 /// Default: /// Nullable:True /// public int? ClientType {get;set;} /// /// Desc:是否会员,1是/2否 /// Default: /// Nullable:True /// public int? ClientIsMember {get;set;} /// /// Desc:代理费类型 /// Default: /// Nullable:True /// public Guid? ClientMemberId {get;set;} /// /// Desc:添加时间 /// Default: /// Nullable:True /// public DateTime? ClientCreatTime {get;set;} /// /// Desc:注销时间 /// Default: /// Nullable:True /// public DateTime? ClientEndTime {get;set;} /// /// Desc:最后修改时间 /// Default: /// Nullable:False /// public DateTime LastUpdateTime {get;set;} /// /// Desc:操作人 /// Default: /// Nullable:False /// public string Operator {get;set;} /// /// Desc:帐号 /// Default: /// Nullable:True /// public string LoginId {get;set;} /// /// Desc:密码 /// Default: /// Nullable:True /// public string Password {get;set;} /// /// Desc:状态 /// Default: /// Nullable:True /// public int? UseState {get;set;} /// /// Desc:注册时间 /// Default: /// Nullable:True /// public DateTime? RegisterDate {get;set;} } }