using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Hg.Core.Entity { [Table("t_trace_user")] public class TraceUser { /// /// 优品帐号 /// [Key] public string? Uid { get; set; } /// /// 用户真实姓名 /// public string? Username { get; set; } /// /// 用户绑定的手机号 /// public string? Bindmob { get; set; } /// /// 用户身份证件号 /// public string? Idcardno { get; set; } /// /// 身份证件类型, 1:身份证 /// public int? Idtype { get; set; } /// /// 身份证件有效期 /// public int? Idexpire { get; set; } /// /// 用户性别,1:女;2:男 /// public int? Gender { get; set; } /// /// 年龄 /// public string? Age { get; set; } /// /// 用户固定电话 /// public string? Tel { get; set; } /// /// 用户联系地址 /// public string? Address { get; set; } /// /// 用户所在地邮编 /// public string? Postcode { get; set; } public string? Email { get; set; } /// /// 学历 /// public string? Degree { get; set; } /// /// 年收入 /// public string? Yearlyincome { get; set; } /// /// 股票投资金额 /// public string? Investmentamount { get; set; } /// /// 资金可用于投资的时长 /// public string? Investmenttime { get; set; } /// /// 用户投资经验 /// public string? Investmentexperience { get; set; } /// /// 风险评测-投资品种 /// public string? Investmenttype { get; set; } /// /// 风险评测-投资资产分配 /// public string? Investmentallocation { get; set; } /// /// 风险评测-投资首要目标 /// public string? Investmentpurpose { get; set; } /// /// 风险评测-投资可承受的最大损失 /// public string? Investmentaffordability { get; set; } /// /// 风险测评签名ID /// public string? Risksignid { get; set; } /// /// 用户资金账号 /// public string? Bankaccount { get; set; } /// /// 用户出生日期 /// public long? Birthday { get; set; } /// /// 用户国籍 /// public string? Nationality { get; set; } /// /// 实际控制投资者的自然人(监护人) /// public string? Superintendent { get; set; } /// /// 交易的实际受益人 /// public string? Beneficiary { get; set; } /// /// 用户工作单位 /// public string? Usercompany { get; set; } /// /// 用户职务 /// public string? Position { get; set; } /// /// 用户职业 /// public string? Professional { get; set; } /// /// 不良诚信记录 /// public string? Creditrecord { get; set; } /// /// 专业投资者申请书 /// public string? Applicationform { get; set; } /// /// 身份证正面 /// public string? Idcardfront { get; set; } /// /// 身份证反面 /// public string? Idcardback { get; set; } /// /// 音频视频资料 /// public string? Mediadata { get; set; } /// /// 创建时间 /// public long? Ctime { get; set; } /// /// 最后修改时间 /// public long? Lastmodifytime { get; set; } /// /// 收入来源 /// public string? Incomesource { get; set; } /// /// 投资占比 /// public string? Investmentrate { get; set; } /// /// 债务 /// public string? Debt { get; set; } /// /// 实际情况 /// public string? Physicaltruth { get; set; } /// /// 交易频率 /// public string? Transactionfrequency { get; set; } /// /// 投资数量 /// public string? Investmentnum { get; set; } /// /// 2年投资经验 /// public string? Twoyearsexperience { get; set; } /// /// 平均交易额 /// public string? Averagetradingvolume { get; set; } /// /// 投资回报 /// public string? Returnofinvestment { get; set; } /// /// 赡养家庭 /// public string? Supportfamily { get; set; } /// /// 家庭就业 /// public string? Familyemployment { get; set; } /// /// ip地址 /// public string? Ip { get; set; } /// /// 状态:0未审核 1:已审核 -1:未通过 /// public int Status { get; set; } /// /// 审核或驳回时间 /// public DateTime? Audittime { get; set; } /// /// 实名驳回备注 /// [Column("audit_remark")] public string? AuditRemark { get; set; } /// /// 验证类型, 1接口验证 2人工审核 /// [Column("verify_type")] public int? VerifyType { get; set; } } }