You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
785 B
33 lines
785 B
9 months ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Text;
|
||
|
using System.Threading.Tasks;
|
||
|
|
||
|
namespace FangYar.Model
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 一般处理程序返回JSON数据模型
|
||
|
/// </summary>
|
||
|
/// <typeparam name="T"></typeparam>
|
||
|
public class JsonRetMo<T>
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 数据编码:0、正常;1、异常
|
||
|
/// </summary>
|
||
|
public string code { get; set; }
|
||
|
/// <summary>
|
||
|
/// 返回信息
|
||
|
/// </summary>
|
||
|
public string msg { get; set; }
|
||
|
/// <summary>
|
||
|
/// 返回信息总数
|
||
|
/// </summary>
|
||
|
public int count { get; set; }
|
||
|
/// <summary>
|
||
|
/// 返回数据
|
||
|
/// </summary>
|
||
|
public T data { get; set; }
|
||
|
}
|
||
|
}
|