ComplianceServer/oldcode/Core.Model/Entity/SMS_MSGTEMPLATE.cs

43 lines
997 B
C#

using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace CRM.Core.Model.Entity
{
[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; }
}
}