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.

43 lines
976 B
C#

9 months ago
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace JwKdsV.Entity
{
/// <summary>
/// 平台返回基类
/// </summary>
[Serializable]
[JsonObject(MemberSerialization.OptIn)]
public class BaseResponse
{
/// <summary>
/// 状态 1成功 0失败
/// </summary>
[JsonProperty(PropertyName = "status")]
public int Status { get; set; }
/// <summary>
/// 消息说明
/// </summary>
[JsonProperty(PropertyName = "message")]
public string Message { get; set; }
/// <summary>
/// 错误码
/// </summary>
[JsonProperty(PropertyName = "errCode")]
public string ErrCode { get; set; }
/// <summary>
/// 错误说明
/// </summary>
[JsonProperty(PropertyName = "errMessage")]
public string ErrMessage { get; set; }
}
}