This commit is contained in:
qianhao.xu
2024-04-28 08:36:00 +08:00
parent 80f0da54c8
commit f88400eb00
5 changed files with 157 additions and 5 deletions

View File

@@ -0,0 +1,24 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ZR.Model.MES.mm.Dto
{
public class IngredientTaskDto
{
public string agv_position { set; get; }
public List<Workerorder_Ingredient> workorders { set; get; }
}
public class Workerorder_Ingredient
{
public string workorder { set; get; }
public string partnumber { set; get; }
public int previousNumber { set; get; }
public int previousNumbered { set; get; }
}
}