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
29
30
31
32
33
34
35
36
37
namespace HStation.Dto.Assets
{
    public class AssetsPackagePumpMappingDto
    {
        public AssetsPackagePumpMappingDto()
        {
        }
 
        public AssetsPackagePumpMappingDto(Model.AssetsPackagePumpMapping rhs)
        {
            this.ID = rhs.ID;
            this.PumpMainID = rhs.PumpMainID;
            this.EquipmentMainID = rhs.EquipmentMainID;
            this.PumpOtherName = rhs.PumpOtherName;
        }
 
        /// <summary>
        /// ID
        /// </summary>
        public long ID { get; set; }
 
        /// <summary>
        /// 泵型号别名
        /// </summary>
        public string PumpOtherName { get; set; }
 
        /// <summary>
        /// 泵型号ID
        /// </summary>
        public long PumpMainID { get; set; }
 
        /// <summary>
        /// 成套设备ID
        /// </summary>
        public long EquipmentMainID { get; set; }
    }
}