namespace WX.CRM.Model.Entity { using System; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; [Table("UPDEV.HIS_SMS_SENDLOG")] public partial class HIS_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; } [StringLength(500)] public string RETURNMSG { get; set; } public short SENDSUCCESS { get; set; } public DateTime? SENDTIME { get; set; } } }