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.
74 lines
1.9 KiB
C#
74 lines
1.9 KiB
C#
using Estsh.Core.Base;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Estsh.Core.Model.ExcelModel
|
|
{
|
|
/// <summary>
|
|
///条码追踪查询明细
|
|
/// </summary>
|
|
[Serializable]
|
|
public class CartonTrack
|
|
{
|
|
[Column("carton_no")]
|
|
[DisplayName("箱码")]
|
|
public string CartonNo { get; set; }
|
|
|
|
[Column("part_no")]
|
|
[DisplayName("零件号")]
|
|
public string PartNo { get; set; }
|
|
|
|
[Column("part_spec")]
|
|
[DisplayName("零件简码")]
|
|
public string PartSpec { get; set; }
|
|
|
|
[Column("unit")]
|
|
[DisplayName("单位")]
|
|
public string Unit { get; set; }
|
|
|
|
[Column("qty")]
|
|
[DisplayName("数量")]
|
|
public string Qty { get; set; }
|
|
|
|
[Column("snp_qty")]
|
|
[DisplayName("标准箱数")]
|
|
public string SnpQty { get; set; }
|
|
|
|
[Column("stock_status")]
|
|
[DisplayName("条码状态")]
|
|
public string StockStatus { get; set; }
|
|
|
|
[Column("locate_name")]
|
|
[DisplayName("库位代码")]
|
|
public string LocateName { get; set; }
|
|
|
|
[Column("locate_type")]
|
|
[DisplayName("库位类型")]
|
|
public string locateType { get; set; }
|
|
|
|
[Column("zone_name")]
|
|
[DisplayName("库区代码")]
|
|
public string ZoneName { get; set; }
|
|
|
|
[Column("warehouse_name")]
|
|
[DisplayName("仓库代码")]
|
|
public string WarehouseName { get; set; }
|
|
|
|
[Column("factory_code")]
|
|
[DisplayName("工厂代码")]
|
|
public string FactoryCode { get; set; }
|
|
|
|
[Column("create_time")]
|
|
[DisplayName("创建时间")]
|
|
public string CreateTime { get; set; }
|
|
|
|
[Column("update_time")]
|
|
[DisplayName("更新时间")]
|
|
public string UpdateTime { get; set; }
|
|
|
|
[Column("enabled")]
|
|
[DisplayName("是否启用")]
|
|
public string Enabled { get; set; }
|
|
}
|
|
}
|