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.
24 lines
490 B
C#
24 lines
490 B
C#
using System;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using SqlSugar;
|
|
|
|
|
|
namespace Admin.Core.Api.PLTBusiness.Entity
|
|
{
|
|
public class ResponseRoot<T>
|
|
{
|
|
/// <summary>
|
|
/// 状态码
|
|
/// </summary>
|
|
public int code { get; set; }
|
|
/// <summary>
|
|
/// 消息提示
|
|
/// </summary>
|
|
public string message { get; set; }
|
|
/// <summary>
|
|
/// 结果对象
|
|
/// </summary>
|
|
public T Data { get; set; }
|
|
}
|
|
} |