📄 smsrecvinfo.cs
字号:
using System;
namespace IPP.SMS
{
/// <summary>
/// Summary description for SMSRecvInfo.
/// </summary>
public class SMSRecvInfo
{
public SMSRecvInfo()
{
Init();
}
public int SysNo;
public string CellNumber;
public string SMSContent;
public DateTime SendTime;
public string index; //短消息在手机中的序号,删除的时候用的
public void Init()
{
SysNo = AppConst.IntNull;
CellNumber = AppConst.StringNull;
SMSContent = AppConst.StringNull;
SendTime = AppConst.DateTimeNull;
index = AppConst.StringNull;
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -