dc/MQ/body/ReturnBody.cs

38 lines
841 B
C#
Raw Normal View History

2022-04-01 17:03:54 +08:00
#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();
}
}
}