ComplianceServer/oldcode/Model/Entity/HIS_SMS_BATCHMSG.cs

31 lines
710 B
C#

namespace WX.CRM.Model.Entity
{
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
[Table("UPDEV.HIS_SMS_BATCHMSG")]
public partial class HIS_SMS_BATCHMSG
{
[Key]
public decimal BATCHID { get; set; }
[Required]
[StringLength(300)]
public string MESSAGE { get; set; }
[Required]
[StringLength(50)]
public string TYPECODE { get; set; }
public decimal? SUBTYPEID { get; set; }
[StringLength(6)]
public string CLIENTCODE { get; set; }
public DateTime CTIME { get; set; }
public decimal CREATEUSER { get; set; }
}
}