4 changed files with 92 additions and 5 deletions
@ -0,0 +1,47 @@ |
|||||
|
using System; |
||||
|
using System.Collections.Generic; |
||||
|
using System.ComponentModel.DataAnnotations; |
||||
|
using System.Linq; |
||||
|
using System.Text; |
||||
|
using System.Threading.Tasks; |
||||
|
using System.Xml.Linq; |
||||
|
|
||||
|
namespace Win_in.Sfs.Wms.DataExchange.WMS.ProductReceiptNote; |
||||
|
public class ProductReceiptNoteSumDetailExchangeDto |
||||
|
{ |
||||
|
/// <summary>
|
||||
|
/// 零件编号
|
||||
|
/// </summary>
|
||||
|
[Display(Name = "零件编号")] |
||||
|
public string itemCode { get; set; } |
||||
|
/// <summary>
|
||||
|
/// 库位编码
|
||||
|
/// </summary>
|
||||
|
[Display(Name = "零件编号")] |
||||
|
public string locationCode { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// MesGuid
|
||||
|
/// </summary>
|
||||
|
[Display(Name = "MesGuid")] |
||||
|
public string MesGuid { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// id
|
||||
|
/// </summary>
|
||||
|
[Display(Name = "id")] |
||||
|
public string Memo { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 生效日期
|
||||
|
/// </summary>
|
||||
|
[Display(Name = "生效日期")] |
||||
|
public DateTime CreatDate { get; set; } = DateTime.Now.Date; |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 数量
|
||||
|
/// </summary>
|
||||
|
[Display(Name = "数量")] |
||||
|
public decimal Qty { get; set; } |
||||
|
|
||||
|
} |
Loading…
Reference in new issue