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.
31 lines
738 B
C#
31 lines
738 B
C#
using Estsh.Core.Base;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Estsh.Core.Model.ExcelModel
|
|
{
|
|
/// <summary>
|
|
///库区管理
|
|
/// </summary>
|
|
[Serializable]
|
|
public class ZoneDefine
|
|
{
|
|
[Column("zone_name")]
|
|
[DisplayName("库区代码")]
|
|
public string? ZoneName { get; set; }
|
|
|
|
[Column("zone_desc")]
|
|
[DisplayName("库区名称")]
|
|
public string? ZoneDesc { get; set; }
|
|
|
|
[Column("warehouse_name")]
|
|
[DisplayName("仓库代码")]
|
|
public string? WarehouseName { get; set; }
|
|
|
|
[Column("erp_warehouse")]
|
|
[DisplayName("库存地")]
|
|
public string? ErpWarehouse { get; set; }
|
|
|
|
}
|
|
}
|