using System; using System.Linq; using System.Text; using SqlSugar; namespace EC_SeckillInfo { /// ///软件代理 /// [SugarTable("Soft_Proxy")] public partial class Soft_Proxy { public Soft_Proxy(){ } /// /// Desc:编号 /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey=true,IsIdentity=true)] public int Keyid {get;set;} /// /// Desc:代理人名称 /// Default: /// Nullable:True /// public string ProxyName {get;set;} /// /// Desc:状态,1代理中/2已禁止 /// Default: /// Nullable:True /// public int? ProxyStatus {get;set;} /// /// Desc:联系电话 /// Default: /// Nullable:True /// public string ProxyPhone {get;set;} /// /// Desc:联系QQ /// Default: /// Nullable:True /// public string ProxyQQ {get;set;} /// /// Desc:联系手机 /// Default: /// Nullable:True /// public string ProxyMobile {get;set;} /// /// Desc:身份证号码 /// Default: /// Nullable:True /// public string ProxyCardNum {get;set;} /// /// Desc:证件图片 /// Default: /// Nullable:True /// public string ProxyCardImg {get;set;} /// /// Desc:代理省 /// Default: /// Nullable:True /// public string ProxyProvince {get;set;} /// /// Desc:代理市 /// Default: /// Nullable:True /// public string ProxyCity {get;set;} /// /// Desc:代理区 /// Default: /// Nullable:True /// public string ProxyCountry {get;set;} /// /// Desc:代理类型 /// Default: /// Nullable:True /// public int? ProxyType {get;set;} /// /// Desc:代理费类型 /// Default: /// Nullable:True /// public int? ProxyMoneyWay {get;set;} /// /// Desc:代理费金额 /// Default: /// Nullable:True /// public int? ProxyMoneyNum {get;set;} /// /// Desc:代理时间 /// Default: /// Nullable:True /// public DateTime? ProxyCreatTime {get;set;} /// /// Desc:禁止时间 /// Default: /// Nullable:True /// public DateTime? ProxyEndTime {get;set;} /// /// Desc:最后修改时间 /// Default: /// Nullable:False /// public DateTime LastUpdateTime {get;set;} /// /// Desc:操作人 /// Default: /// Nullable:False /// public string Operator {get;set;} } }