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

40 lines
911 B
C#

using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace CRM.Core.Model.Entity
{
[Table("SMS_MESSAGE_HIS")]
public partial class SMS_MESSAGE_HIS
{
[Key]
public decimal MESSAGEID { get; set; }
[Required]
[StringLength(300)]
public string MESSAGE { get; set; }
[Required]
[StringLength(50)]
public string TYPECODE { get; set; }
[StringLength(50)]
public string SUBTYPECODE { get; set; }
public string RESID { get; set; }
[StringLength(6)]
public string CLIENTCODE { get; set; }
public DateTime CTIME { get; set; }
public decimal CREATEUSER { get; set; }
public decimal? SENDID { get; set; }
public short? SENDSUCCESS { get; set; }
public DateTime? SENDTIME { get; set; }
}
}