Zxd.Core/code/Zxd.Entity/dg/Sms_Records.cs

80 lines
1.9 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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; }
/// <summary>
/// 资源ID
/// </summary>
public string umid { get; set; }
/// <summary>
/// 脱敏手机号
/// </summary>
public string phone { get; set; }
/// <summary>
/// 内部单号
/// </summary>
public string trade_no { get; set; }
/// <summary>
/// 外部单号
/// </summary>
public string out_trade_no { get; set; }
///// <summary>
///// 模板类型ID
///// </summary>
//public int sms_temp_type_id { get; set; }
/// <summary>
/// 渠道ID
/// </summary>
public int channel_id { get; set; }
/// <summary>
/// 渠道商模板ID
/// </summary>
public string template_id { get; set; }
/// <summary>
/// 短信内容
/// </summary>
public string sms_content { get; set; }
///// <summary>
///// 发送状态 0: 失败 1: 成功
///// </summary>
//public bool send_state { get; set; }
/// <summary>
/// 发送时间
/// </summary>
public DateTime send_time { get; set; }
/// <summary>
/// 回执返回值
/// </summary>
public string receipt_code { get; set; }
/// <summary>
/// 回执状态码
/// </summary>
public string receipt_status { get; set; }
/// <summary>
/// 回执接收时间
/// </summary>
public DateTime receipt_time { get; set; }
/// <summary>
/// 回执成功 0失败 1成功
/// </summary>
public bool receipt_success { get; set; }
}
}