using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Web;
|
|
namespace WebAPI.Models
|
{
|
public class Warehouse
|
{
|
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; }
|
public string HRemark { get; set; }
|
public string HShortNumber { get; set; }
|
public bool HStopFlag { get; set; }
|
public string HUseFlag { get; set; }
|
public Int64 HEmpID { get; set; }
|
public string HAddress { get; set; }
|
public string HPhone { get; set; }
|
public Int64 HSPGroupID { get; set; }
|
public string HBarCode { get; set; }
|
public Int64 HUSEORGID { get; set; }
|
public Int64 HCREATEORGID { get; set; }
|
public string HMaker { get; set; }
|
public string HUpDater { get; set; }
|
|
|
}
|
}
|