添加序列号记录
This commit is contained in:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user