14 lines
320 B
C#
14 lines
320 B
C#
namespace DI_Electrical.Model
|
|
{
|
|
/// <summary>
|
|
/// learun mvc标准的http返回结果
|
|
/// </summary>
|
|
/// <typeparam name="T"></typeparam>
|
|
public class learunHttpRes<T>
|
|
{
|
|
public int code { get; set; }
|
|
public string info { get; set; }
|
|
public T data { get; set; }
|
|
}
|
|
}
|