using System; 
 | 
using System.Collections.Generic; 
 | 
using System.Linq; 
 | 
using System.Web; 
 | 
  
 | 
namespace WebAPI.Models 
 | 
{ 
 | 
    public class PackType 
 | 
    { 
 | 
        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 string HUseFlag { get; set; }   //使用状态 
 | 
        public DateTime HMakeTime { get; set; }   //建立时间 
 | 
        public string HMakeEmp { get; set; }   //创建人 
 | 
        public string HPackMaterial { get; set; }   //包装材质 
 | 
        public decimal HLenhth { get; set; }   //长 
 | 
        public decimal HWidth { get; set; }   //宽 
 | 
        public decimal HHeight { get; set; }   //高 
 | 
    } 
 | 
} 
 |