using System; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace CRM.Core.Model.Entity { [Table("UPDEV.SMS_SENDLOG")] public partial class SMS_SENDLOG { [Key] public decimal SENDID { get; set; } [StringLength(2000)] public string SENDSTR { get; set; } [StringLength(6)] public string CLIENTCODE { get; set; } public decimal? MSGSOURCEID { get; set; } public string RETURNMSG { get; set; } public short SENDSUCCESS { get; set; } public DateTime? SENDTIME { get; set; } } }