2025-06-06 16:00:39 +08:00

54 lines
1.3 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace VOL.Model.Ai
{
/// <summary>
/// 获取AI设备的信息
/// </summary>
public class Ai_DeviceDto
{
/// <summary>
/// AI设备编码
/// </summary>
public string Code { get; set; }
/// <summary>
/// 设备名称
/// </summary>
public string Name { get; set; }
/// <summary>
/// 所属学校Code
/// </summary>
public string SchoolCode { get; set; }
/// <summary>
/// 所属学校名称
/// </summary>
public string SchoolName { get; set; }
/// <summary>
/// 状态 固定值1启用2禁用禁用的设备无法使用
/// </summary>
public int Status { get; set; }
/// <summary>
/// 支持项目编号
/// </summary>
public List<int> ItemCodes { get; set; }
/// <summary>
/// 有效期,开始时间
/// </summary>
public DateTime StartTime { get; set; }
/// <summary>
/// 有效期,结束时间
/// </summary>
public DateTime EndTime { get; set; }
}
}