chenhaozhe
2025-05-06 92a93a399f8c8481a9cc2f2e46b89ee0b45a98ec
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
using System;
 
namespace WebAPI.Models
{
 
    public class ClsGy_PatrolCheck : DBUtility.ClsGy_Base_Ctl
    {
        public int HItemID;
        public string HNumber;          //代码
        public string HName;             //名称
        public string HHelpCode;    //助记码
        public string HShortNumber;   //短代码
        public int HParentID;       //父级
        public int HLevel;         //等级
        public int HCREATEORGID;
        public int HUSEORGID;
        public bool HEndFlag;        //末级标志
        public bool HStopflag;      //禁用标志
        public string HRemark;         //备注
        public string HMakeEmp;
        public string HPatrolCheckItemType;
        public string HUseFlag = "未使用";
 
        public Int64 HPatrolCheckItemClassID; //巡检项目分类
    }
    
}