yusijie
2026-01-23 f96e978aced4a28fca0382b14bea1a3a5950627e
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
 
namespace Model
{
    public class ClsGy_OperatorGroup
    {
        public int HItemID { get; set; }
        public string HNumber { get; set; }
        public string HName { get; set; }
        public string HShortNumber { get; set; }
        public int HParentID { get; set; }
        public int HLevel { get; set; }
        public bool HEndFlag { get; set; }
        public bool HStopflag { get; set; }
        public string HRemark { get; set; }
        public string HHelpCode { get; set; }
        public string HUseFlag { get; set; }
        public int HUSEORGID { get; set; }
        public int HOperatorGroupId { get; set; }
        public string HOperatorGroupType { get; set; }
        public bool HIsUse { get; set; }
    }
}