Dear_Sheng
2021-07-12 6d426c9e7fbea7b31307a8923e0eef89800f39c1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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; }
    }
}