using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Mesnac.Action.Feeding.Qingquan { /// /// PlcSchema.xml文档中PLC下传数据项分组类 - 对应add的父级节点 /// public class PlcRecipeWriter { public PlcRecipeWriter() { this.EquipRunName = string.Empty; this.ThisCount = 1; this.ThisType = 0; this.SchemaList = new List(); } /// /// 设备运行时的别名 /// public string EquipRunName { get; set; } /// /// 数据库设置的名称 /// public string DataFieldName { get; set; } /// /// 数量 /// public int ThisCount { get; set; } /// /// 类型 /// public int ThisType { get; set; } /// /// 数据项 /// public List SchemaList { get; set; } } }