namespace NPP.SmartSchedue.Api.Contracts.Services.Equipment.Dto;
///
/// 获取设备列表输入
///
public class GetEquipmentListInput
{
///
/// 设备类型
///
public string EquipmentType { get; set; }
///
/// 设备状态
///
public int? Status { get; set; }
///
/// 设备名称(模糊查询)
///
public string Name { get; set; }
///
/// 内部编号(模糊查询)
///
public string InternalNumber { get; set; }
///
/// 设备负责人ID
///
public long? ResponsiblePersonId { get; set; }
///
/// 工序ID
///
public long? ProcessID { get; set; }
}