You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
676 B
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; }
|
|
}
|
|
}
|