ComplianceServer/oldcode/Model/Entity/BAS_INNERUSER_EXT.cs

25 lines
621 B
C#

namespace WX.CRM.Model.Entity
{
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
[Table("UPDEV.BAS_INNERUSER_EXT")]
public partial class BAS_INNERUSER_EXT
{
[Key]
public decimal INNERUSERID { get; set; }
public short? FXH_FUTURESSTATUS { get; set; }
public short? FXH_TRADERSTATUS { get; set; }
public short? FXH_TUTORSTATUS { get; set; }
public short? GJS_CUSTOMERMANAGER { get; set; }
public short? GENERALCUSTOMER { get; set; }
public short? SENIORCUSTOMER { get; set; }
}
}