copy from Dto/HStation.Dto.Assets.Core/02-EquipmentManage/UpdateEquipmentManageInput.cs
copy to Dto/HStation.Dto.Assets.Core/02-AdaptingManage/AddAdaptingManageInput.cs
Îļþ´Ó Dto/HStation.Dto.Assets.Core/02-EquipmentManage/UpdateEquipmentManageInput.cs ¸´ÖÆ |
| | |
| | | using HStation.Service.Assets; |
| | | using System.ComponentModel.DataAnnotations; |
| | | |
| | | namespace HStation.Dto.Assets |
| | | { |
| | | public class UpdateEquipmentManageInput |
| | | public class AddAdaptingManageInput |
| | | { |
| | | /// <summary> |
| | | /// id |
| | | /// </summary> |
| | | [Required, Range(1, long.MaxValue, ErrorMessage = "ID å¿
须大äº0")] |
| | | public long ID { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 设å¤ç±»å(弯头,ä¸é,åé....) |
| | | /// </summary> |
| | | public eAdaptingType EquipmentType { get; set; } |
| | | public eAdaptingType AdaptingType { get; set; } |
| | | |
| | | /// <summary> |
| | | /// åç§° |
| | | /// </summary> |
| | | public string Name { get; set; } |
| | | |
| | | /// <summary> |
| | | /// å£å¾ |
| | |
| | | public string Coefficient { get; set; } |
| | | |
| | | /// <summary> |
| | | /// ç±»å |
| | | /// æåºç |
| | | /// </summary> |
| | | public string Type { get; set; } |
| | | public int SortCode { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 说æ |
| | | /// </summary> |
| | | public string Description { get; set; } |
| | | } |
| | | } |