You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.1 KiB
C#
43 lines
1.1 KiB
C#
using Estsh.Core.Base;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Estsh.Core.Model.ExcelModel
|
|
{
|
|
/// <summary>
|
|
///库位管理
|
|
/// </summary>
|
|
[Serializable]
|
|
public class LocateDefine
|
|
{
|
|
[Column("locate_name")]
|
|
[DisplayName("库位名称")]
|
|
public string? LocateName { get; set; }
|
|
|
|
[Column("locate_desc")]
|
|
[DisplayName("库位描述")]
|
|
public string? LocateDesc { get; set; }
|
|
|
|
[Column("locate_type")]
|
|
[DisplayName("库位类型")]
|
|
public string? LocateType { get; set; }
|
|
|
|
[Column("locate_capacity")]
|
|
[DisplayName("库位容量")]
|
|
public decimal? LocateCapacity { get; set; }
|
|
|
|
[Column("max_locate_qty")]
|
|
[DisplayName("最大库容")]
|
|
public decimal? MaxLocateQty { get; set; }
|
|
|
|
[Column("warehouse_name")]
|
|
[DisplayName("仓库代码")]
|
|
public string? WarehouseName { get; set; }
|
|
|
|
[Column("zone_name")]
|
|
[DisplayName("库区代码")]
|
|
public string? ZoneName { get; set; }
|
|
|
|
}
|
|
}
|