namespace WX.CRM.Model.Entity { using System; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; [Table("UPDEV.SMS_MSGTEMPLATE")] public partial class SMS_MSGTEMPLATE { [Key] public decimal PKID { get; set; } public decimal SUBTYPEID { get; set; } [Required] [StringLength(50)] public string TITLE { get; set; } [Required] [StringLength(300)] public string TEMPLATE { get; set; } [StringLength(100)] public string TPARAM { get; set; } public short ISSHOW { get; set; } public short ISAUDITED { get; set; } public decimal? AUDITORID { get; set; } public DateTime? CTIME { get; set; } public decimal? CREATEUSER { get; set; } public DateTime? UTIME { get; set; } public decimal? UPDATEUSER { get; set; } public virtual SMS_MSGSUBTYPE SMS_MSGSUBTYPE { get; set; } } }