36 lines
789 B
C#
36 lines
789 B
C#
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace CRM.Core.Model.Entity
|
|
{
|
|
|
|
[Table("SMS_MESSAGE")]
|
|
public partial class SMS_MESSAGE
|
|
{
|
|
[Key]
|
|
public decimal MESSAGEID { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(300)]
|
|
public string MESSAGE { get; set; }
|
|
|
|
//[StringLength(18)]
|
|
public string RESID { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(50)]
|
|
public string TYPECODE { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string SUBTYPECODE { get; set; }
|
|
|
|
[StringLength(6)]
|
|
public string CLIENTCODE { get; set; }
|
|
|
|
public DateTime CTIME { get; set; }
|
|
|
|
public decimal CREATEUSER { get; set; }
|
|
}
|
|
}
|