This commit is contained in:
tongfei
2024-04-09 15:52:12 +08:00
parent 0d3f14372e
commit 1d42183b3c
4 changed files with 33 additions and 5 deletions

View File

@@ -54,6 +54,18 @@ namespace WMS.Web.Core.Dto.Erp
/// 批号
/// </summary>
[JsonProperty("FLot")]
public string Lot { get; set; }
public ErpLotSaveDto Lot { get; set; }
}
/// <summary>
/// 批号
/// </summary>
public class ErpLotSaveDto
{
/// <summary>
/// 批号
/// </summary>
[JsonProperty("FNumber")]
public string Number { get; set; }
}
}