ComplianceServer/oldcode/Model/Entity/SMS_BATCHMSGTEMPLATE.cs

36 lines
847 B
C#

namespace WX.CRM.Model.Entity
{
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
[Table("UPDEV.SMS_BATCHMSGTEMPLATE")]
public partial class SMS_BATCHMSGTEMPLATE
{
[Key]
public decimal PKID { get; set; }
[Required]
[StringLength(50)]
public string TEMPLATENAME { get; set; }
[Required]
[StringLength(200)]
public string TEMPLATEVALUE { get; set; }
public decimal PARMNUM { get; set; }
[StringLength(200)]
public string SENDSTR { get; set; }
[StringLength(20)]
public string CILENTCODE { get; set; }
public decimal? TEMPLATELEN { get; set; }
public DateTime? CTIME { get; set; }
public decimal SUBTYPEID { get; set; }
}
}