ComplianceServer/oldcode/Model/Entity/QH_CUSTOMER_RESID.cs

72 lines
1.6 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

namespace WX.CRM.Model.Entity
{
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
[Table("UPDEV.QH_CUSTOMER_RESID")]
public partial class QH_CUSTOMER_RESID
{
[Key]
public decimal PKID { get; set; }
[StringLength(18)]
public string RESID { get; set; }
/// <summary>
/// 资产账号
/// </summary>
[StringLength(50)]
public string USERACCOUNT { get; set; }
public DateTime? CTIME { get; set; }
public decimal? CREATEUSERID { get; set; }
/// <summary>
/// 期货用户编号
/// </summary>
[StringLength(100)]
public string USERCARD { get; set; }
[StringLength(50)]
public string NAME { get; set; }
/// <summary>
/// 身份证
/// </summary>
[StringLength(30)]
public string IDCARD { get; set; }
[StringLength(20)]
public string MOBILE { get; set; }
public decimal? AUDITUSERID { get; set; }
public DateTime? AUDITTIME { get; set; }
/// <summary>
/// 录音id
/// </summary>
public decimal? RECORDID { get; set; }
/// <summary>
/// 0未审核1录音合规2审核通过
/// </summary>
public decimal? STATUS { get; set; }
/// <summary>
/// 录音加入时间
/// </summary>
public DateTime? RECORDCTIME { get; set; }
/// <summary>
/// 录音人
/// </summary>
public decimal? RECORDUSERID { get; set; }
}
}