using System; using System.Linq; using System.Text; using SqlSugar; namespace SA.Entity.zxdcrm_Models { /// ///资源待清洗 /// [SugarTable("res_apply")] public partial class ResApply { public ResApply(){ } /// /// Desc:PKID /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey=true,IsIdentity=true,ColumnName="pkid")] public int Pkid {get;set;} /// /// Desc:标签 /// Default: /// Nullable:False /// [SugarColumn(ColumnName="resourcetag")] public string Resourcetag {get;set;} /// /// Desc:资源id /// Default: /// Nullable:False /// [SugarColumn(ColumnName="resid")] public string Resid {get;set;} /// /// Desc:软件用户名 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="username")] public string? Username {get;set;} /// /// Desc:json扩展 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="jsondata")] public string? Jsondata {get;set;} /// /// Desc:报名时间 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="rtime")] public DateTime? Rtime {get;set;} /// /// Desc:创建时间 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="ctime")] public DateTime? Ctime {get;set;} /// /// Desc:json数据标志 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="jsontype")] public int? Jsontype {get;set;} /// /// Desc:清洗标志 /// Default:0 /// Nullable:False /// [SugarColumn(ColumnName="status")] public int Status {get;set;} /// /// Desc:申请手机号 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="mobile")] public string? Mobile {get;set;} /// /// Desc:数据类型 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="datatype")] public string? Datatype {get;set;} /// /// Desc:xml数据 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="extxml")] public string? Extxml {get;set;} /// /// Desc:手机号码密文串 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="enmobile")] public string? Enmobile {get;set;} /// /// Desc:清洗错误次数 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="err_count")] public int? Err_count {get;set;} /// /// Desc:清洗错误原因 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="err_str")] public string? Err_str {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="kword")] public string? Kword {get;set;} } }