TG.WXCRM.V4/Model/Entity/QH_DISCREPANCYGOLD.cs

93 lines
2.0 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_DISCREPANCYGOLD")]
public partial class QH_DISCREPANCYGOLD
{
[Key]
public decimal PKID { get; set; }
/// <summary>
/// 所属组
/// </summary>
[StringLength(50)]
public string TEAM { get; set; }
/// <summary>
/// 账户
/// </summary>
[StringLength(50)]
public string USERACCOUNT { get; set; }
/// <summary>
/// 账户名称
/// </summary>
[StringLength(50)]
public string ACCOUNTNAME { get; set; }
/// <summary>
/// 币种
/// </summary>
[StringLength(20)]
public string BZ { get; set; }
/// <summary>
/// 出入金类型
/// </summary>
[StringLength(20)]
public string CRJLX { get; set; }
/// <summary>
/// 金额
/// </summary>
public decimal? JE { get; set; }
/// <summary>
/// 自有资金
/// </summary>
public decimal? ZYZJ { get; set; }
/// <summary>
/// 本金
/// </summary>
public decimal? BJ { get; set; }
/// <summary>
/// 初始日期格式20180413
/// </summary>
[StringLength(20)]
public string INITRQ { get; set; }
/// <summary>
/// 初始时间165543
/// </summary>
[StringLength(20)]
public string INITTIME { get; set; }
/// <summary>
/// 日期
/// </summary>
public DateTime? RQ { get; set; }
/// <summary>
/// 操作
/// </summary>
public string CZ { get; set; }
/// <summary>
/// 写入时间
/// </summary>
public DateTime? CTIME { get; set; }
[StringLength(20)]
public string RESID { get; set; }
}
}