using System; 
 | 
using System.Collections.Generic; 
 | 
using System.Linq; 
 | 
using System.Web; 
 | 
  
 | 
namespace WebAPI.Models 
 | 
{ 
 | 
    public class Gy_TemporaryArea 
 | 
    { 
 | 
        public long HItemID { get; set; } 
 | 
        public string HNumber { get; set; }       // 代码 
 | 
        public string HName { get; set; }         //  名称 
 | 
        public string HShortNumber { get; set; }   //短代码 
 | 
        public long HParentID { get; set; }      //父级ID 
 | 
        public bool HEndFlag { get; set; }      //末级标志 
 | 
        public bool HStopFlag { get; set; }     //禁用标志 
 | 
        public string HRemark { get; set; }       //备注 
 | 
        public string HHelpCode { get; set; }      //助记码 
 | 
        public int HUSEORGID { get; set; }      //使用组织 
 | 
        public int HCREATEORGID { get; set; }      //创建组织 
 | 
        public string HBarCode { get; set; }      //条形码         
 | 
    } 
 | 
} 
 |