14 lines
320 B
C#
Raw Normal View History

2025-08-15 15:25:44 +08:00
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; }
}
}