using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Text;
namespace DllEapEntity.OFILM
{
///
/// 添加设备接收参数
///
public class EquipmentRequestDto
{
///
/// 设备号 必填
///
[Required]
public string EquipmentID { get; set; }
///
/// 设备名 必填
///
[Required]
public string EquipmentName { get; set; }
///
/// 设备型号 必填
///
[Required]
public string EquipmentModel { get; set; }
///
/// 设备类别
///
public string EquipmentType { get; set; }
///
/// 厂区
///
public string Factory { get; set; }
///
/// 部门
///
public string Department { get; set; }
///
/// 组别
///
public string Group { get; set; }
///
/// 地址
///
public string Address { get; set; }
}
}