修复bug

This commit is contained in:
18942506660
2023-12-09 11:49:48 +08:00
parent ad598e25f5
commit 279945539b
9 changed files with 160 additions and 42 deletions

View 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; }
}
}