using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Zxd.Entity.dg { [Table("t_sms_records")] public class Sms_Records { [Key] public int id { get; set; } /// /// 资源ID /// public string umid { get; set; } /// /// 脱敏手机号 /// public string phone { get; set; } /// /// 内部单号 /// public string trade_no { get; set; } /// /// 外部单号 /// public string out_trade_no { get; set; } ///// ///// 模板类型ID ///// //public int sms_temp_type_id { get; set; } /// /// 渠道ID /// public int channel_id { get; set; } /// /// 渠道商模板ID /// public string template_id { get; set; } /// /// 短信内容 /// public string sms_content { get; set; } ///// ///// 发送状态 0: 失败 1: 成功 ///// //public bool send_state { get; set; } /// /// 发送时间 /// public DateTime send_time { get; set; } /// /// 回执返回值 /// public string receipt_code { get; set; } /// /// 回执状态码 /// public string receipt_status { get; set; } /// /// 回执接收时间 /// public DateTime receipt_time { get; set; } /// /// 回执成功 0:失败 1:成功 /// public bool receipt_success { get; set; } } }