修复bug
This commit is contained in:
43
src/WMS.Web.Core/Dto/Erp/OutStock/ErpSalOutStockSaveDto.cs
Normal file
43
src/WMS.Web.Core/Dto/Erp/OutStock/ErpSalOutStockSaveDto.cs
Normal file
@@ -0,0 +1,43 @@
|
||||
using Newtonsoft.Json;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace WMS.Web.Core.Dto.Erp.OutStock
|
||||
{
|
||||
/// <summary>
|
||||
/// 修改销售出库单
|
||||
/// </summary>
|
||||
public class ErpSalOutStockSaveDto
|
||||
{
|
||||
public ErpSalOutStockSaveDto() { }
|
||||
public ErpSalOutStockSaveDto(string id)
|
||||
{
|
||||
this.Id = id;
|
||||
}
|
||||
/// <summary>
|
||||
/// 单据Id
|
||||
/// </summary>
|
||||
[JsonProperty("FID")]
|
||||
public string Id { get; set; }
|
||||
/// <summary>
|
||||
/// 明细
|
||||
/// </summary>
|
||||
[JsonProperty("FEntity")]
|
||||
public List<ErpSalOutStockDetailsSaveDto> Details { get; set; } = new List<ErpSalOutStockDetailsSaveDto>();
|
||||
}
|
||||
public class ErpSalOutStockDetailsSaveDto
|
||||
{
|
||||
public ErpSalOutStockDetailsSaveDto(){}
|
||||
/// <summary>
|
||||
/// 明细Id
|
||||
/// </summary>
|
||||
[JsonProperty("FENTRYID")]
|
||||
public string DetailId { get; set; }
|
||||
/// <summary>
|
||||
/// 数量
|
||||
/// </summary>
|
||||
[JsonProperty("FRealQty")]
|
||||
public decimal Qty { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user