duheng
2024-09-22 9ffb31c233f3b4891550293294c2ee716f77b42a
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
namespace HStation.Vmo
{
    public class ValveGroupAndMainMapVmo
    {
        /// <summary>
        /// id
        /// </summary>
        public long ID { get; set; }
 
        /// <summary>
        /// 阀门组ID
        /// </summary>
        public long ValveGroupID { get; set; }
 
        /// <summary>
        /// 阀门型号ID
        /// </summary>
        public long ValveMainID { get; set; }
 
        /// <summary>
        /// 排序码
        /// </summary>
        public int SortCode { get; set; }
 
        /// <summary>
        /// 说明
        /// </summary>
        public string Description { get; set; }
    }
}