1
chenhaozhe
2025-06-20 55e832ca189624916a7a2e3e6cf24e513de9b1b4
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; }
    }
}