1
duhe
2025-09-04 155e2ca508888a5117921e2c2a7c74db84be469e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
 
namespace WebAPI.Models
{
    public class ClsGy_PNLInfoSub
    {
        public int HInterID { get; set; } // 主表ID
        public int HEntryID { get; set; } // 子表ID
        public string HLayOutName { get; set; } // PNL布局名称
        public string HSetNo { get; set; } // set号
        public string HPCSNo { get; set; } // PCS号
        public int HPosition_x { get; set; } // PCS行所在索引
        public int HPosition_y { get; set; } // PCS列所在索引
        public int HSetPosition_y { get; set; } 
        public int HSetPosition_x { get; set; }
    }
}