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.
62 lines
1.5 KiB
C#
62 lines
1.5 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Estsh.Core.Model.ExcelModel
|
|
{
|
|
/// <summary>
|
|
///库存条码明细
|
|
/// </summary>
|
|
[Serializable]
|
|
public class StockDetailQuery
|
|
{
|
|
[Column("carton_no")]
|
|
[DisplayName("箱条码")]
|
|
public string CartonNo { get; set; }
|
|
|
|
[Column("part_spec")]
|
|
[DisplayName("简码")]
|
|
public string PartSpec { get; set; }
|
|
|
|
[Column("part_no")]
|
|
[DisplayName("零件号")]
|
|
public string PartNo { get; set; }
|
|
|
|
[Column("part_spec2")]
|
|
[DisplayName("零件名称")]
|
|
public string PartSpec2 { get; set; }
|
|
|
|
[Column("lot_no")]
|
|
[DisplayName("批次号")]
|
|
public string LotNo { get; set; }
|
|
|
|
[Column("erp_warehouse")]
|
|
[DisplayName("ERP库存地")]
|
|
public string erpWarehouse { get; set; }
|
|
|
|
[Column("zone_name")]
|
|
[DisplayName("库区")]
|
|
public string zoneName { get; set; }
|
|
|
|
[Column("locate_name")]
|
|
[DisplayName("库位")]
|
|
public string locateName { get; set; }
|
|
|
|
[Column("stock_status")]
|
|
[DisplayName("状态")]
|
|
public string stockStatus { get; set; }
|
|
|
|
[Column("qty")]
|
|
[DisplayName("数量")]
|
|
public string qty { get; set; }
|
|
|
|
[Column("snp_qty")]
|
|
[DisplayName("默认包装")]
|
|
public string SnpQty { get; set; }
|
|
}
|
|
}
|