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; 
 | 
    } 
 | 
} 
 |