?? report_resp.cs
字號(hào):
using System;
using System.Collections.Generic;
using System.Text;
namespace JeasonZhao.Sms.SGIP.Command
{
/// <summary>
/// Report命令用于向SP發(fā)送一條先前的Submit命令的當(dāng)前狀態(tài),或者用于向前轉(zhuǎn)SMG發(fā)送一條先前的Deliver命令的當(dāng)前狀態(tài)。Report命令的接收方需要向發(fā)送方返回Report_Resp命令。
/// </summary>
public class Report_Resp : BaseCommand
{
public Report_Resp()
: base(Commands.Report_Resp)
{
}
#region 字段列表
//Result 1 Integer Bind執(zhí)行命令是否成功。
private ErrorCodes m_Result = 0;
//Reserve 8 Text 保留,擴(kuò)展用
private string m_Reserve = null;
#endregion
#region 屬性列表
/// <summary>
///Result 1 Integer Bind執(zhí)行命令是否成功。
/// </summary>
[SmsField(false, 0, 1)]
public ErrorCodes Result
{
get { return m_Result; }
set { m_Result = value; }
}
/// <summary>
///Reserve 8 Text 保留,擴(kuò)展用
/// </summary>
[SmsField(false, 1, 8)]
public string Reserve
{
get { return m_Reserve; }
set { m_Reserve = value; }
}
#endregion
}
}
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -