namespace WX.CRM.Model.Entity { using System; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; [Table("UPDEV.RES_APPLY_HIS")] public partial class RES_APPLY_HIS { [Key] public decimal PKID { get; set; } [Required] [StringLength(100)] public string RESOURCETAG { get; set; } [Required] [StringLength(100)] public string RESID { get; set; } [StringLength(50)] public string USERNAME { get; set; } [StringLength(1000)] public string JSONDATA { get; set; } public DateTime? RTIME { get; set; } public DateTime? CTIME { get; set; } public decimal? JSONTYPE { get; set; } public decimal? STATUS { get; set; } [StringLength(20)] public string DATATYPE { get; set; } [StringLength(1000)] public string EXTXML { get; set; } } }