yangle
2024-05-07 f90ec957dbc918e87efb9cb506210d7939fc8301
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 Gy_Duty
    {
        public int HItemID;
        public int HParentID;
        public int HLevel;
        public string HNumber { get; set; }
        public string HName { get; set; }
        public string HUserGroupID { get; set; }
        public string HRemark { get; set; }
        public string HShortNumber { get; set; }
        public string HHelpCode { get; set; }
        public bool HStopflag;
        public int HEndFlag;
        public string HUserCode;
    }
}