纽威
 
 
 
 
 

32 lines
676 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ICSSoft.Entity
{
public class ICSLocation
{
/// <summary>
/// 库位
/// </summary>
public string LocationCode { get; set; }
/// <summary>
/// 库位名称
/// </summary>
public string LocationName { get; set; }
/// <summary>
/// 仓库
/// </summary>
public string WarehouseCode { get; set; }
/// <summary>
/// 库存名称
/// </summary>
public string WarehouseName { get; set; }
public string WorkPoint { get; set; }
}
}