yangle
2022-11-11 6ab91376db824bac727946324f184d6076fa5acd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
 
namespace WebAPI.Models
{
    public class WorkStation
    {
        public bool HEndFlag { get; set; }   //末级标志
        public string HHelpCode { get; set; }   //助记码
        public long HItemID { get; set; }  //主键
        public long HLevel { get; set; }   //等级
        public string HName { get; set; }   //名称 
        public string HNumber { get; set; }   //代码 
        public long HParentID { get; set; }   //父级ID
        public string HRemark { get; set; }   //备注
        public string HShortNumber { get; set; }   //短代码
        public bool HStopflag { get; set; }   //禁用标志
        public long HUSEORGID { get; set; }   //使用组织
        public long HCREATEORGID { get; set; }   //创建组织
    }
}