38 lines
841 B
C#
38 lines
841 B
C#
#region << 版 本 注 释 >>
|
||
/*----------------------------------------------------------------
|
||
* 创建者:Hupe
|
||
* 创建时间:2021/10/28 10:05:52
|
||
* 版本:V1.0.0
|
||
* 描述:
|
||
*
|
||
* ----------------------------------------------------------------
|
||
* 修改人:
|
||
* 时间:
|
||
* 修改说明:
|
||
*
|
||
* 版本:V1.0.1
|
||
*----------------------------------------------------------------*/
|
||
#endregion << 版 本 注 释 >>
|
||
|
||
using System;
|
||
using System.Collections.Generic;
|
||
using System.Linq;
|
||
using System.Text;
|
||
using System.Threading.Tasks;
|
||
|
||
|
||
namespace ARI.EAP.HOST.MQ.body
|
||
{
|
||
/// <summary>
|
||
/// ReturnBody 的摘要说明
|
||
/// </summary>
|
||
class ReturnBody
|
||
{
|
||
public string returnCode;
|
||
|
||
public ReturnBody(int returnCode)
|
||
{
|
||
this.returnCode = returnCode.ToString();
|
||
}
|
||
}
|
||
} |