25 lines
565 B
C#
25 lines
565 B
C#
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; }
|
|
}
|
|
}
|