34 lines
684 B
C#
34 lines
684 B
C#
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; }
|
|
|
|
|
|
}
|
|
}
|