42 lines
885 B
C#
42 lines
885 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace InSituLaboratory.Models
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 设备
|
|||
|
|
/// </summary>
|
|||
|
|
public class SysDevicesModel
|
|||
|
|
{
|
|||
|
|
public int Index { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// ID
|
|||
|
|
/// </summary>
|
|||
|
|
public int ID { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 设备代码
|
|||
|
|
/// </summary>
|
|||
|
|
public string? DeviceType { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 设备名称
|
|||
|
|
/// </summary>
|
|||
|
|
public string? DeviceName { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 单次工作最大时长
|
|||
|
|
/// </summary>
|
|||
|
|
public string? WorkTime { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 最小工作时长
|
|||
|
|
/// </summary>
|
|||
|
|
public string? MinWorkTime { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|