1.解析失败抛异常就不上传了 避免一直上传造成的日志记录繁多 以及请求次数过多
2.增加物料规格的显示
This commit is contained in:
@ -1,4 +1,5 @@
|
||||
using System;
|
||||
using Newtonsoft.Json;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
@ -27,5 +28,11 @@ namespace WCS.Model.ApiModel.MKYBackgroundThread
|
||||
public string material_name { get; set; } = "-";
|
||||
|
||||
public string material_code { get; set; } = "-";
|
||||
|
||||
/// <summary>
|
||||
/// 物料规格
|
||||
/// </summary>
|
||||
[JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
|
||||
public string material_spec { get; set; } = "-";
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user