using Datory.Annotations; namespace GxPress.Entity { /// /// 短信日志 /// [DataTable("tede_sms_log")] public class SmsLog : Datory.Entity { /// /// 手机号码 /// /// [DataColumn] public string Phone { get; set; } /// /// 来源状态 /// /// [DataColumn] public int SourceId { get; set; } /// /// 来源类型 /// /// [DataColumn] public int SourceType { get; set; } /// /// 是否发送 /// /// [DataColumn] public bool IsSend { get; set; } /// /// 消息 /// /// [DataColumn] public string Message { get; set; } } }