You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
642 B
C#
27 lines
642 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace SlnMesnac.Common.Model
|
|
{
|
|
public class ReponseMessage
|
|
{
|
|
/// <summary>
|
|
/// 返回码
|
|
/// </summary>
|
|
public string code { get; set; }
|
|
/// <summary>
|
|
/// 返回消息,成功或其他
|
|
/// </summary>
|
|
public string message { get; set; }
|
|
/// <summary>
|
|
/// 请求编号
|
|
/// </summary>
|
|
public string reqCode { get; set; }
|
|
/// <summary>
|
|
/// 自定义返回(返回任务单号)
|
|
/// </summary>
|
|
public string data { get; set; }
|
|
}
|
|
}
|