You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- using BPASmartClient.S7Net;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace BPASmartClient.JXJFoodBigStation.Model.Siemens
- {
- public class DL_Finish_DB
- {
-
- /// <summary>
- /// 配料完成信号确认
- /// </summary>
- public bool Ask_For_Finish_PLC { get; set; }
-
- public short[] StandbyFinish { get; set; } = new short[4];
- [Siemens(16)]
- /// <summary>
- /// 生产工单编码
- /// </summary>
- public string Order_No { get; set; } = "";
- [Siemens(16)]
- /// <summary>
- /// 产品名称
- /// </summary>
- public string Product_Code { get; set; } = "";
- public short job_No { get; set; }
- /// <summary>
- /// 原料信息
- /// </summary>
- public UDT1[] Material { get; set; } = new UDT1[20];
- public short ProcessTime { get; set; }
- /// <summary>
- /// 配料完成信号
- /// </summary>
- public bool Ask_For_Finish { get; set; }
-
- public short[] StandbyFinish1 { get; set; } = new short[4];
-
- }
- public class UDT1
- {
- [Siemens(6)]
- public string Material_Name { get; set; } = "";
- public float Material_Laying_Off_Weight { get; set; }
- public short Material_BarrelNum { get; set; }
- }
- }
|