lixiaojun
2024-11-18 a302d7d16e6bed80511cb49813d16829eb933560
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
using System.ComponentModel.DataAnnotations;
 
namespace HStation.Dto.Assets
{
    public class UpdateAssetsPackagePumpMappingInput
    {
        /// <summary>
        /// id
        /// </summary>
        [Required, Range(1, long.MaxValue, ErrorMessage = "ID 必须大于0")]
        public long ID { get; set; }
 
        /// <summary>
        /// 泵型号ID
        /// </summary>
        public long PumpMainID { get; set; }
 
        /// <summary>
        /// 泵型号别名
        /// </summary>
        public string PumpOtherName { get; set; }
 
        /// <summary>
        /// 成套设备ID
        /// </summary>
        public long EquipmentMainID { get; set; }
    }
}