using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace WebAPI.Models { public class Gy_CarType { 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 int HLevel { get; set; } // 等级 public bool HEndFlag { get; set; } // 末级标志 public bool HStopflag { get; set; } // 禁用标志 public string HRemark { get; set; } // 备注 public string HHelpCode { get; set; } // 助记码 public string HUseFlag { get; set; } // 使用状态(未检测,未使用,已使用) public DateTime? HMakeTime { get; set; } // 建立时间 public string HMakeEmp { get; set; } // 创建人 public string HCheckEmp { get; set; } // 审核人 public DateTime? HCheckTime { get; set; } // 审核时间 public string HModifyEmp { get; set; } // 修改人 public DateTime? HModifyTime { get; set; } // 修改时间 public string HStopEmp { get; set; } // 禁用人 public DateTime? HStopTime { get; set; } // 禁用时间 public int HUSEORGID { get; set; } // 使用组织 public int HCREATEORGID { get; set; } // 创建组织 // 车辆尺寸相关属性 public decimal HLong { get; set; } // 长(米) public decimal HWeight { get; set; } // 宽(米) public decimal HHeight { get; set; } // 高(米) public decimal HMaxVolume { get; set; } // 车辆承运最大体积(立方米) } }