using System;
using System.Collections.Generic;
using System.Text;
using SqlSugar;
namespace Operater.DbModel
{
///
/// 发送记录/回复记录
///
[SugarTable("sms_sendhistory")]
public class SmsSendhistory
{
///
/// 发送记录/回复记录
///
public SmsSendhistory()
{
}
///
/// 主键
///
[SugarColumn(IsPrimaryKey = true)]
public System.String Id { get; set; }
///
/// 发送的手机号码
///
public System.String Mobile { get; set; }
///
/// 发送短信条数
///
public System.Int32? Succedsmscount { get; set; }
///
/// 发送状态
///
public System.Int32? Sendstatus { get; set; }
///
/// 发送时间/回复短信时间
///
public System.DateTime? Sendtime { get; set; }
///
/// 短信内容/回复短信内容
///
public System.String Smscontent { get; set; }
///
/// 1:发送的短信 2:回复的短信
///
public System.String Memo { get; set; }
///
/// 用户id
///
public System.String Memberid { get; set; }
///
/// 是否删除 0未删除 1删除
///
public System.Int32? Isshowsend { get; set; }
///
/// 任务id
///
public System.String Mainid { get; set; }
///
/// 接口发送id
///
public System.String Sendid { get; set; }
///
/// 0:未读,1:已读
///
public System.Int32? IsRead { get; set; }
///
/// 发送短信条数
///
public System.Int32? ReaLsuccedsmscount { get; set; }
}
}