namespace WX.CRM.Model.Entity { using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; [Table("UPDEV.SMS_BATCHMSGDETAIL")] public partial class SMS_BATCHMSGDETAIL { [Key] public decimal PKID { get; set; } [Required] [StringLength(100)] public string RESID { get; set; } public decimal BATCHID { get; set; } } }