1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
 
namespace WebAPI.Models
{
    public class ClsGy_PNLInfo
    {
        public int HInterID { get; set; }
 
        public string HLayOutName { get; set; }
 
        public string HIcon { get; set; }
 
        public int HRowCount { get; set; }
 
        public int HColCount { get; set; }
 
        public string HMaker { get; set; }
 
        public DateTime HMakeDate { get; set; }
 
        public decimal HPNLPositionX { get; set; }
 
        public decimal HPNLPositionY { get; set; }
 
        public string HModifyMan { get; set; }
 
        public DateTime? HModifyDate { get; set; }
 
        public string HStopMan { get; set; }
 
        public DateTime? HStopDate { get; set; }
 
        public string HCheckMan { get; set; }
 
        public DateTime? HCkeckDate { get; set; }
 
        public decimal HPNLPosition_x { get; set; }
        public decimal HPNLPosition_y { get; set; }
 
    }
}