10 changed files with 145 additions and 19 deletions
@ -0,0 +1,8 @@ |
|||||
|
{ |
||||
|
"profiles": { |
||||
|
"WSL": { |
||||
|
"commandName": "WSL2", |
||||
|
"distributionName": "" |
||||
|
} |
||||
|
} |
||||
|
} |
@ -0,0 +1,53 @@ |
|||||
|
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; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 返喷数量
|
||||
|
/// </summary>
|
||||
|
[Display(Name = "返喷数量")] |
||||
|
public decimal BadQty { get; set; } |
||||
|
|
||||
|
} |
Loading…
Reference in new issue