设备管理
This commit is contained in:
59
ZR.Model/MES/Device/Dto/DeviceDefaultDto.cs
Normal file
59
ZR.Model/MES/Device/Dto/DeviceDefaultDto.cs
Normal file
@@ -0,0 +1,59 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace ZR.Model.MES.dev.Dto
|
||||
{
|
||||
public class DeviceDefaultDto
|
||||
{
|
||||
/// <summary>
|
||||
/// 设备类型id
|
||||
/// </summary>
|
||||
public int? DevicetTypeId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 设备名称
|
||||
/// </summary>
|
||||
public string DeviceName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 设备代码
|
||||
/// </summary>
|
||||
public string DeviceCode { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 搜索时间
|
||||
/// </summary>
|
||||
public DateTime[] searchTime { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 1-发布时间与开始时间 2-开始时间与结束时间
|
||||
/// </summary>
|
||||
public int searchType { get; set; }
|
||||
|
||||
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 人员响应
|
||||
/// </summary>
|
||||
public class PersonnelResponseDto
|
||||
{
|
||||
public string TaskName { get; set; }
|
||||
public string Id { get; set; }
|
||||
/// <summary>
|
||||
/// 接受响应时间戳
|
||||
/// </summary>
|
||||
public TimeSpan Accept_response { get; set; }
|
||||
/// <summary>
|
||||
/// 处理响应时间戳
|
||||
/// </summary>
|
||||
public TimeSpan Action_response { get; set; }
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user