1.解析失败抛异常就不上传了 避免一直上传造成的日志记录繁多 以及请求次数过多

2.增加物料规格的显示
This commit is contained in:
hehaibing-1996
2025-06-06 08:12:28 +08:00
parent 18be7b8119
commit b64103e6f3
3 changed files with 24 additions and 3 deletions

View File

@ -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; } = "-";
}
}