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.
101 lines
2.8 KiB
C#
101 lines
2.8 KiB
C#
using Estsh.Core.Base;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
|
|
namespace Estsh.Core.Model.ExcelModel
|
|
{
|
|
/// <summary>
|
|
///盘点列表
|
|
/// </summary>
|
|
[Serializable]
|
|
public class CycleCountList
|
|
{
|
|
[Column("order_no")]
|
|
[DisplayName("盘点单号")]
|
|
public string OrderNo { 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("carton_no")]
|
|
[DisplayName("箱条码")]
|
|
public string CartonNo { get; set; }
|
|
|
|
[Column("qty")]
|
|
[DisplayName("应盘数量")]
|
|
public decimal Qty { get; set; }
|
|
|
|
[Column("fact_qty")]
|
|
[DisplayName("实盘数量")]
|
|
public decimal factQty { get; set; }
|
|
|
|
[Column("up_fact_qty")]
|
|
[DisplayName("上一次实盘数量")]
|
|
public decimal? UpFactQty { get; set; }
|
|
|
|
[Column("warehouse_name")]
|
|
[DisplayName("应盘仓库")]
|
|
public string WarehouseName { get; set; }
|
|
|
|
[Column("dest_warehouse_name")]
|
|
[DisplayName("实盘仓库")]
|
|
public string DestWarehouseName { get; set; }
|
|
|
|
[Column("up_dest_warehouse_name")]
|
|
[DisplayName("上一次实盘仓库")]
|
|
public string UpDestWarehouseName { get; set; }
|
|
|
|
[Column("zone_name")]
|
|
[DisplayName("应盘库区")]
|
|
public string ZoneName { get; set; }
|
|
|
|
[Column("dest_zone_name")]
|
|
[DisplayName("实盘库区")]
|
|
public string DestZoneName { get; set; }
|
|
|
|
[Column("up_dest_zone_name")]
|
|
[DisplayName("上一次实盘库区")]
|
|
public string UpDestZoneName { get; set; }
|
|
|
|
[Column("locate_name")]
|
|
[DisplayName("应盘库位")]
|
|
public string LocateName { get; set; }
|
|
|
|
[Column("dest_locate_name")]
|
|
[DisplayName("实盘库位")]
|
|
public string DestLocateName { get; set; }
|
|
|
|
[Column("up_dest_locate_name")]
|
|
[DisplayName("上一次实盘库位")]
|
|
public string UpDestLocateName { get; set; }
|
|
|
|
[NotMapped]
|
|
[Column("sn_status_desc")]
|
|
[DisplayName("条码状态")]
|
|
public string SnStatusDesc { get; set; }
|
|
|
|
[NotMapped]
|
|
[Column("trans_status_desc")]
|
|
[DisplayName("事务状态")]
|
|
public string TransStatusDesc { get; set; }
|
|
|
|
[Column("up_trans_status_desc")]
|
|
[DisplayName("上一次事务状态")]
|
|
public string UpTransStatusDesc { get; set; }
|
|
|
|
[Column("factory_code")]
|
|
[DisplayName("工厂代码")]
|
|
public string Factorycode { get; set; }
|
|
}
|
|
}
|