using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BPASmartClient.JXJFoodBigStation.Model.Siemens { internal class DL_Start_DB { /// /// 配方编码 /// public string RecipeCode; /// /// 配发名称 /// public string RecipeName; /// /// 物料信息 /// public UDT[] Material = new UDT[20]; /// /// 托盘编号 /// public int TrayCode; /// /// 配方发送请求 /// public bool Ask_For_Send_Bit; /// /// 上位机确认配方接收完成 /// public bool Ack_Ask_For_Send_Bit; } public class UDT { /// /// 原料名称 /// public string Material_Name; /// /// 原料重量 /// public float Material_Weight; /// /// 原料桶号 /// public short Material_BarrelNum; } }