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.
35 lines
726 B
C#
35 lines
726 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace SlnMesnac.Model.AirportApiEntity
|
|
{
|
|
/// <summary>
|
|
/// AGV返回值 根类型 实体类
|
|
/// </summary>
|
|
/// <typeparam name="T"></typeparam>
|
|
public class AGVResponseEntity<T> where T : class
|
|
{
|
|
/// <summary>
|
|
/// 代码
|
|
/// </summary>
|
|
public int code { get; set; }
|
|
|
|
/// <summary>
|
|
/// 数据体
|
|
/// </summary>
|
|
public T? Data { get; set; }
|
|
|
|
/// <summary>
|
|
/// 信息
|
|
/// </summary>
|
|
public string message { get; set; }
|
|
|
|
/// <summary>
|
|
/// 计数
|
|
/// </summary>
|
|
public int? count { get; set; }
|
|
}
|
|
|
|
}
|