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.
98 lines
2.7 KiB
C#
98 lines
2.7 KiB
C#
using Estsh.Core.Base;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Estsh.Core.Model.ExcelModel
|
|
{
|
|
/// <summary>
|
|
///生产指令调整
|
|
/// </summary>
|
|
[Serializable]
|
|
public class InventTransQuery
|
|
{
|
|
[Column("trans_type_desc")]
|
|
[DisplayName("事务类型")]
|
|
public string transTypeDesc { get; set; }
|
|
|
|
[Column("ref_order_no")]
|
|
[DisplayName("单号")]
|
|
public string RefOrderNo { get; set; }
|
|
|
|
[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("part_spec2")]
|
|
[DisplayName("零件名称")]
|
|
public string PartSpec2 { get; set; }
|
|
|
|
[Column("unit")]
|
|
[DisplayName("单位")]
|
|
public string Unit { get; set; }
|
|
|
|
[Column("trans_qty")]
|
|
[DisplayName("事务数量")]
|
|
public string TransQty { get; set; }
|
|
|
|
[Column("old_qty")]
|
|
[DisplayName("旧条码数量")]
|
|
public string OldQty { get; set; }
|
|
|
|
[Column("new_qty")]
|
|
[DisplayName("新条码数量")]
|
|
public string NewQty { get; set; }
|
|
|
|
[Column("old_status_desc")]
|
|
[DisplayName("旧条码状态")]
|
|
public string OldStatusDesc { get; set; }
|
|
|
|
[Column("new_status_desc")]
|
|
[DisplayName("新条码状态")]
|
|
public string NewStatusDesc { get; set; }
|
|
|
|
[Column("src_warehouse_name")]
|
|
[DisplayName("源库仓库")]
|
|
public string SrcWarehouseName { get; set; }
|
|
|
|
[Column("dest_warehouse_name")]
|
|
[DisplayName("目标仓库")]
|
|
public string DestWarehouseName { get; set; }
|
|
|
|
[Column("src_zone_name")]
|
|
[DisplayName("源库库区")]
|
|
public string SrcZoneName { get; set; }
|
|
|
|
[Column("dest_zone_name")]
|
|
[DisplayName("目标库区")]
|
|
public string DestZoneName { get; set; }
|
|
|
|
[Column("src_locate_name")]
|
|
[DisplayName("源库库位")]
|
|
public string SrcLocateName { get; set; }
|
|
|
|
[Column("dest_locate_name")]
|
|
[DisplayName("目标库位")]
|
|
public string DestLocateName { 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; }
|
|
}
|
|
}
|