基线 SVN r240

SVN-Revision: r240
This commit is contained in:
cyf
2025-02-06 06:46:06 +00:00
commit ab56a9bcf7
5317 changed files with 902274 additions and 0 deletions
@@ -0,0 +1,43 @@
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;
}
}