添加序列号记录

This commit is contained in:
18942506660
2023-11-08 16:50:30 +08:00
parent 98a7f3f68a
commit 3f124a12b9
10 changed files with 186 additions and 23 deletions

View File

@@ -36,25 +36,20 @@ namespace WMS.Web.Core.Dto
[JsonProperty("CompleteCartonTime")]
public string CompleteCartonTime { get; set; }
/// <summary>
/// 箱子的创建时间
/// </summary>
[JsonProperty("cartonCreateTime")]
public string cartonCreateTime { get; set; }
/// <summary>
/// 箱子创建用户
/// </summary>
[JsonProperty("BoxUser")]
public string BoxUser { get; set; }
public string CreateUser { get; set; }
/// <summary>
/// 创建时间对应老OPS的创建时间
/// </summary>
[JsonProperty("CreateTime")]
[JsonProperty("cartonCreateTime")]
public DateTime CreateTime { get; set; } = DateTime.Now;
/// <summary>
/// 明细
/// </summary>
[JsonProperty("BoxReturnDetails")]
public List<OpsBoxDetailsResponse> Details = new List<OpsBoxDetailsResponse>();
public List<OpsBoxDetailsResponse> Details { get; set; } = new List<OpsBoxDetailsResponse>();
}
public class SerialNumbersResponse
{
@@ -64,15 +59,15 @@ namespace WMS.Web.Core.Dto
[JsonProperty("sn")]
public string SerialNumber { get; set; }
/// <summary>
/// 条码生成时间
/// 序列号生成时间
/// </summary>
[JsonProperty("barCreateTime")]
public string barCreateTime { get; set; }
public string BarCreateTime { get; set; }
/// <summary>
/// 条码生成用户
/// 序列号生成用户
/// </summary>
[JsonProperty("barCereateUser")]
public string barCereateUser { get; set; }
public string BarCereateUser { get; set; }
}
public class OpsBoxDetailsResponse {