31 lines
720 B
C#
31 lines
720 B
C#
using System;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace WX.CRM.Model.Entity
|
|
{
|
|
public class BAS_MON_INNERUSER_EXTEND
|
|
{
|
|
[NotMapped]
|
|
public BAS_MON_INNERUSER bas_mon_inneruser { get; set; }
|
|
//经纪人状态
|
|
[NotMapped]
|
|
public Nullable<short> FUTURESSTATUS { get; set; }
|
|
|
|
//操盘手状态
|
|
[NotMapped]
|
|
public Nullable<short> TRADERSTATUS { get; set; }
|
|
|
|
//导师状态
|
|
[NotMapped]
|
|
public Nullable<short> TUTORSTATUS { get; set; }
|
|
|
|
//销售组
|
|
[NotMapped]
|
|
public string GNAME { get; set; }
|
|
|
|
//部门
|
|
[NotMapped]
|
|
public string DEPTNAME { get; set; }
|
|
}
|
|
}
|