chenhaozhe
2026-02-27 9f298c3a9cfc9a4d7e56e4b6e89ec09cbe9bcb88
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; }
    }
}