Files
lserp_cs_6.0/插件库/Lskj.Interface.Api/BaseResponse.cs
T
cyf ab56a9bcf7 基线 SVN r240
SVN-Revision: r240
2025-02-06 06:46:06 +00:00

44 lines
991 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Lskj.Interface.Api
{
public class BaseResponse
{
/// <summary>
/// 是否成功
/// </summary>
public bool success { get; set; }
/// <summary>
/// 文字信息
/// </summary>
public string msg { get; set; }
/// <summary>
/// 数据总数
/// </summary>
public int tot { get; set; }
/// <summary>
/// 返回的主数据
/// </summary>
public object data { get; set; }
/// <summary>
/// 如有其它数据
/// </summary>
public object other { get; set; }
/// <summary>
/// json编码后的字符串
/// </summary>
public string EncodedResult { get; set; }
/// <summary>
/// json编码后的字符串
/// </summary>
public bool WriteResponse = true;
}
}