using System; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace WX.CRM.Model.Entity { [Table("UPDEV.WEAPP_SALEUSERS")] public class WEAPP_SALEUSERS { [Key] public decimal PKID { get; set; } public decimal INNERUSERID { get; set; } public decimal EID { get; set; } public string ACCOUNTNUM { get; set; } public decimal STATE { get; set; } public decimal TYPE { get; set; } public DateTime CTIME { get; set; } } }