1.质检不合格,选择时间区间;2.生产入库记录增加工单类型及物料的查询条件;3.产成品入库同步BIP成功后,相关信息记录到生产入库记录

This commit is contained in:
2024-10-22 13:54:43 +08:00
parent 7c9a64e5eb
commit 48299687c2
7 changed files with 153 additions and 25 deletions

View File

@@ -162,6 +162,11 @@
public string attachment { get; set; } = string.Empty;
public List<List<Exextype>>? checktypes { get; set; }
/// <summary>
/// 不合格时,选择的暂控开始结束时间,时间戳数组 例如[12358471,2654814753]
/// </summary>
public long []? startEndTime { get; set; }
}
public class Exextype
{
@@ -208,6 +213,10 @@
public string? exectime { get; set; }
public string? execuser { get; set; }
public string batch { get; set; }
/// <summary>
/// 附件
/// </summary>
public string? attachment { get; set; }
public List<List<Checktype>>? checktypes { get; set; }