设备管理

This commit is contained in:
gcw_MV9p2JJN
2025-09-23 15:11:18 +08:00
parent 657d1b7ab6
commit 308ca6df79
66 changed files with 7276 additions and 17 deletions

View 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; }
}
}