duhe
2025-06-19 e7dcdcd81ad0a11d36084ca124f031f42d61bdd2
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.Models
{
    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列所在索引
    }
}