zrg
2024-10-09 243e86af1a7c74c8bfda3bb41f29a11fef13c065
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
 
namespace WebAPI.Models
{
    public class Gy_ColorClass
    {
        public long HItemID { get; set; }//自增id
        public string HNumber { get; set; }//编码联合主键
        public string HName { get; set; }//名称
        public string HShortNumber { get; set; }//短代码
        public long HParentID { get; set; } //父级ID
        public long 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 DateTime HMakeTime { get; set; }//创建时间
        public string HMakeEmp { get; set; }//创建
        public DateTime HCheckTime { get; set; }//审核时间
        public string HCheckEmp { get; set; }//审核
        public DateTime HModifyTime { get; set; }//修改时间
        public string HModifyEmp { get; set; }//修改
        public DateTime HStopTime { get; set; }//禁用时间
        public string HStopEmp { get; set; }//禁用
 
        public long HUSEORGID { get; set; }//使用组织
        public long HCREATEORGID { get; set; } //创建组织
    }
}