取消逻辑调整 原材料看板调整

This commit is contained in:
2024-07-31 14:24:44 +08:00
parent 9221113607
commit b9ae51f015
8 changed files with 641 additions and 132 deletions

View File

@@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Newtonsoft.Json.Linq;
namespace Tnb.WarehouseMgr.Entities.Dto
{
public class YCLBoardOutput
{
public JObject summary { get; set; }
public List<List<LocationOutput>> locationOutputs { get; set; }
}
}