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
21
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
 
namespace WebAPI.Models
{
    public class ClsGy_PNLInfo
    {
        public int HInterID { get; set; }  // 标识ID
        public string HLayOutName  { get; set; } // PNL布局名称
        public string HIcon { get; set; } // PCS图标
        public int HRowCount { get; set; } // 行数
        public int HColCount { get; set; } // 列数
        public string HMaker { get; set; } // 创建人
        public DateTime HMakeDate { get; set; } // 创建时间
        public string HPNLPosition_x { get; set; } 
        public string HPNLPosition_y { get; set; } 
 
    }
}