chenhaozhe
2025-06-16 a735d7ffe0466668b60c835f012e9d53094021f7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
 
namespace WebAPI.Controllers.基础资料.基础资料
{
    public class Gy_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列所在索引
    }
}