using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace AutoCheckSMS
|
{
|
/// <summary>
|
/// 待发送内容
|
/// </summary>
|
public class tbl_sms_task
|
{
|
private int _taskID;
|
private int _userID;
|
private string _msgContent;//内容
|
private string _readError;//分包状态,分包完成,待发送
|
private int _isAudit;//0-待审核,2-审核通过
|
private int _isSend;//2-是完成发送,3-是终止,4-是完成任务不发送。
|
|
public int TaskID { get => _taskID; set => _taskID = value; }
|
public int UserID { get => _userID; set => _userID = value; }
|
public string MsgContent { get => _msgContent; set => _msgContent = value; }
|
public string ReadError { get => _readError; set => _readError = value; }
|
public int IsAudit { get => _isAudit; set => _isAudit = value; }
|
public int IsSend { get => _isSend; set => _isSend = value; }
|
}
|
|
public class UserID
|
{
|
public string Userid { get; set; }
|
}
|
}
|