Shuxia Ning
2024-08-20 d36d96955f33f03130d2de2f3ea8838f91600f05
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
namespace HStation.Dto
{
    public class AddXhsPumpMainPhartMappingInput
    {
        /// <summary>
        /// 泵 id
        /// </summary>    
        [Required, Range(1, long.MaxValue, ErrorMessage = "PumpMainID 必须大于0")]
        public long PumpMainID { get; set; }
 
        /// <summary>
        /// 图表id
        /// </summary>
        public long DiagramID { get; set; }
 
        /// <summary>
        /// 别名
        /// </summary>    
        public string OtherName { get; set; }
 
        /// <summary>
        /// 重要度
        /// </summary>
        public int Importance { get; set; }
 
    }
}