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

58 lines
1.5 KiB
C#

using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace WX.CRM.Model.Entity
{
[Table("UPDEV.BAS_MON_INNERUSER_EXT")]
public class BAS_MON_INNERUSER_EXT
{
/// <summary>
/// 员工id
/// </summary>
[Key]
public decimal INNERUSERID { get; set; }
/// <summary>
/// 经纪人状态
/// </summary>
public short? FXH_FUTURESSTATUS { get; set; }
/// <summary>
/// 操盘手状态
/// </summary>
public short? FXH_TRADERSTATUS { get; set; }
/// <summary>
/// 导师状态
/// </summary>
public short? FXH_TUTORSTATUS { get; set; }
/// <summary>
/// 月结年
/// </summary>
public decimal? BALANCEYEAR { get; set; }
/// <summary>
/// 月结月
/// </summary>
public decimal? BALANCEMONTH { get; set; }
/// <summary>
/// 月结码
/// </summary>
public DateTime BALANCECODE { get; set; }
/// <summary>
/// 结算时间
/// </summary>
public DateTime? BALANCEDATE { get; set; }
/// <summary>
/// 客户经理
/// </summary>
public short? BAS_CUSTOMERMANAGER { get; set; }
/// <summary>
/// 客服
/// </summary>
public short? GENERALCUSTOMER { get; set; }
/// <summary>
/// 高级客服
/// </summary>
public short? SENIORCUSTOMER { get; set; }
}
}