yangle
2025-04-15 9382e8326714a25e04661150d0f11ad47ca0fcac
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
 
namespace WebAPI.Models
{
    public class ClsGy_EquipFileType : DBUtility.ClsXt_BaseBillMain
    {
        public int HItemID;                     //主键 int                  
        public string HNumber;      //代码 
        public string HName;        //名称 
        public string HShortNumber;     //短代码   
        public int HParentID;          //父级ID int   
        public int HLevel;            //等级    int  
        public bool HEndFlag;            //末级标志 bit   
        public bool HStopflag;            //禁用标志 bit
        public string HRemark;      //备注 varchar(50)   
        public string HHelpCode;        //助记码  varchar(20)
        public string HUseFlag="未使用";     //使用状态(未检测,未使用,已使用)
        public DateTime HMakeTime;          //建立时间(getdate())    
        public string HMakeEmp;     //创建人            
        public string HCheckEmp;        //审核人
        public DateTime HCheckTime;            //审核时间
        public string HModifyEmp;       //修改人
        public DateTime HModifyTime;            //修改时间
        public string HStopEmp;     //禁用人
        public DateTime HStopTime;            //禁用时间
 
    }
}