This commit is contained in:
2023-09-05 17:43:33 +08:00
parent b8028496be
commit 6bf8f27658
2 changed files with 13 additions and 2 deletions

View File

@@ -123,7 +123,11 @@ namespace Tnb.ProductionMgr
if (string.IsNullOrEmpty(stationId))
{
return Array.Empty<string>();
return new
{
pagination = new PageResult(),
list = Array.Empty<string>()
};
}
Dictionary<string, object> dic = await _dictionaryDataService.GetDicByKey(DictConst.TaskStatus);