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 UpdateAssetsPumpTypeSeriesMapInput
    {
        /// <summary>
        /// id
        /// </summary>
        [Required, Range(1, long.MaxValue, ErrorMessage = "ID 必须大于0")]
        public long ID { get; set; }
 
        /// <summary>
        /// 泵型号ID
        /// </summary>
        public long PumpSeriesID { get; set; }
 
        /// <summary>
        /// 类型ID
        /// </summary>
        public long PumpTypeID { get; set; }
 
        /// <summary>
        /// 排序码
        /// </summary>
        public int SortCode { get; set; }
    }
}