namespace WX.CRM.Model.Entity { using System; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; [Table("UPDEV.CACHE_RES_RESOURCE_COUNT")] public partial class CACHE_RES_RESOURCE_COUNT { [Key] [StringLength(18)] public string RESID { get; set; } public short? HASACTIVE { get; set; } public short? HASBOCE { get; set; } public short? HASGJS { get; set; } public short? HASUSERNAME { get; set; } public short? HASINAMT { get; set; } public short? HASTRADE { get; set; } public short? HASMEMO { get; set; } public short? HASEFFECTMEMO { get; set; } public decimal? ALLTRADEAMT { get; set; } public decimal? ALLINAMT { get; set; } public DateTime? LASTACTIVETIME { get; set; } public DateTime? LASTCALLTIME { get; set; } } }