using System; using System.Collections.Generic; using System.Linq; using SqlSugar; namespace SA.Entity.zxdcrm_audit_Models { /// /// /// [SugarTable("t_trace_user")] public class t_trace_user { /// /// 优品帐号 /// [SugarColumn(ColumnName="uid" ,IsPrimaryKey = true )] public string uid { get; set; } =""; /// /// 用户真实姓名 /// [SugarColumn(ColumnName="username" )] public string username { get; set; } =""; /// /// 用户绑定的手机号 /// [SugarColumn(ColumnName="bindmob" )] public string bindmob { get; set; } =""; /// /// 用户身份证件号 /// [SugarColumn(ColumnName="idcardno" )] public string idcardno { get; set; } =""; /// /// 身份证件类型, 1:身份证 /// [SugarColumn(ColumnName="idtype" )] public byte? idtype { get; set; } /// /// 身份证件有效期 /// [SugarColumn(ColumnName="idexpire" )] public long? idexpire { get; set; } /// /// 用户性别,1:女;2:男 /// [SugarColumn(ColumnName="gender" )] public byte? gender { get; set; } /// /// /// [SugarColumn(ColumnName="age" )] public string age { get; set; } =""; /// /// 用户固定电话 /// [SugarColumn(ColumnName="tel" )] public string tel { get; set; } =""; /// /// 用户联系地址 /// [SugarColumn(ColumnName="address" )] public string address { get; set; } =""; /// /// 用户所在地邮编 /// [SugarColumn(ColumnName="postcode" )] public string postcode { get; set; } =""; /// /// /// 默认值: 用户邮箱地址 /// [SugarColumn(ColumnName="email" )] public string email { get; set; } =""; /// /// 学历 /// [SugarColumn(ColumnName="degree" )] public string degree { get; set; } =""; /// /// 年收入 /// [SugarColumn(ColumnName="yearlyincome" )] public string yearlyincome { get; set; } =""; /// /// 股票投资金额 /// [SugarColumn(ColumnName="investmentamount" )] public string investmentamount { get; set; } =""; /// /// 资金可用于投资的时长 /// [SugarColumn(ColumnName="investmenttime" )] public string investmenttime { get; set; } =""; /// /// 用户投资经验 /// [SugarColumn(ColumnName="investmentexperience" )] public string investmentexperience { get; set; } =""; /// /// 风险评测-投资品种 /// [SugarColumn(ColumnName="investmenttype" )] public string investmenttype { get; set; } =""; /// /// 风险评测-投资资产分配 /// [SugarColumn(ColumnName="investmentallocation" )] public string investmentallocation { get; set; } =""; /// /// 风险评测-投资首要目标 /// [SugarColumn(ColumnName="investmentpurpose" )] public string investmentpurpose { get; set; } =""; /// /// 风险评测-投资可承受的最大损失 /// [SugarColumn(ColumnName="investmentaffordability" )] public string investmentaffordability { get; set; } =""; /// /// 风险测评签名ID /// [SugarColumn(ColumnName="risksignid" )] public string risksignid { get; set; } =""; /// /// 用户资金账号 /// [SugarColumn(ColumnName="bankaccount" )] public string bankaccount { get; set; } =""; /// /// 用户出生日期 /// [SugarColumn(ColumnName="birthday" )] public long? birthday { get; set; } /// /// 用户国籍 /// [SugarColumn(ColumnName="nationality" )] public string nationality { get; set; } =""; /// /// 实际控制投资者的自然人(监护人) /// [SugarColumn(ColumnName="superintendent" )] public string superintendent { get; set; } =""; /// /// 交易的实际受益人 /// [SugarColumn(ColumnName="beneficiary" )] public string beneficiary { get; set; } =""; /// /// 用户工作单位 /// [SugarColumn(ColumnName="usercompany" )] public string usercompany { get; set; } =""; /// /// 用户职务 /// [SugarColumn(ColumnName="position" )] public string position { get; set; } =""; /// /// 用户职业 /// [SugarColumn(ColumnName="professional" )] public string professional { get; set; } =""; /// /// 不良诚信记录 /// [SugarColumn(ColumnName="creditrecord" )] public string creditrecord { get; set; } =""; /// /// 专业投资者申请书 /// [SugarColumn(ColumnName="applicationform" )] public string applicationform { get; set; } =""; /// /// 身份证正面 /// [SugarColumn(ColumnName="idcardfront" )] public string idcardfront { get; set; } =""; /// /// 身份证反面 /// [SugarColumn(ColumnName="idcardback" )] public string idcardback { get; set; } =""; /// /// 音频视频资料 /// [SugarColumn(ColumnName="mediadata" )] public string mediadata { get; set; } =""; /// /// /// [SugarColumn(ColumnName="ctime" )] public long? ctime { get; set; } /// /// /// [SugarColumn(ColumnName="lastmodifytime" )] public long? lastmodifytime { get; set; } /// /// 收入来源 /// [SugarColumn(ColumnName="incomesource" )] public string incomesource { get; set; } =""; /// /// 投资占比 /// [SugarColumn(ColumnName="investmentrate" )] public string investmentrate { get; set; } =""; /// /// 债务 /// [SugarColumn(ColumnName="debt" )] public string debt { get; set; } =""; /// /// 实际情况 /// [SugarColumn(ColumnName="physicaltruth" )] public string physicaltruth { get; set; } =""; /// /// 交易频率 /// [SugarColumn(ColumnName="transactionfrequency" )] public string transactionfrequency { get; set; } =""; /// /// 投资数量 /// [SugarColumn(ColumnName="investmentnum" )] public string investmentnum { get; set; } =""; /// /// 2年投资经验 /// [SugarColumn(ColumnName="twoyearsexperience" )] public string twoyearsexperience { get; set; } =""; /// /// 平均交易额 /// [SugarColumn(ColumnName="averagetradingvolume" )] public string averagetradingvolume { get; set; } =""; /// /// 投资回报 /// [SugarColumn(ColumnName="returnofinvestment" )] public string returnofinvestment { get; set; } =""; /// /// 赡养家庭 /// [SugarColumn(ColumnName="supportfamily" )] public string supportfamily { get; set; } =""; /// /// 家庭就业 /// [SugarColumn(ColumnName="familyemployment" )] public string familyemployment { get; set; } =""; } }