You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.1 KiB
47 lines
1.1 KiB
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Win_in.Sfs.Wms.DataExchange.WMS.ItemPack;
|
|
|
|
public class ItemPackExchangeDto
|
|
{
|
|
/// <summary>
|
|
/// 供应商编号
|
|
/// </summary>
|
|
[Display(Name = "供应商编号")]
|
|
public string SupplierCode { get; set; }
|
|
/// <summary>
|
|
/// 物品代码
|
|
/// </summary>
|
|
[Display(Name = "物品代码")]
|
|
public string ItemCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 包装代码
|
|
/// </summary>
|
|
[Display(Name = "包装代码")]
|
|
public string PackCode { get; set; }
|
|
/// <summary>
|
|
/// 包装名称
|
|
/// </summary>
|
|
|
|
[Display(Name = "包装名称")]
|
|
public string PackName { get; set; }
|
|
/// <summary>
|
|
/// 零件规格/颜色
|
|
/// </summary>
|
|
|
|
[Display(Name = "零件规格/颜色")]
|
|
public string Remark { get; set; }
|
|
|
|
/// <summary>
|
|
/// 包装计量单位
|
|
/// </summary>
|
|
[Display(Name = "包装计量单位")]
|
|
public string PackUom { get; set; }
|
|
|
|
/// <summary>
|
|
/// 包装数量
|
|
/// </summary>
|
|
[Display(Name = "包装数量")]
|
|
public decimal Qty { get; set; }
|
|
}
|
|
|