using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Mesnac.Action.ChemicalWeighing { /// /// PlCSchema.xml文件配存盘数据项分组类 -- 对应add的父级节点 /// public class PlcRecipeReader { public PlcRecipeReader() { this.EquipBrand = String.Empty; this.TargetTable = String.Empty; this.PlcFiledName = String.Empty; this.ThisCount = 1; this.ThisType = 0; this.ItemList = new List(); } /// /// 所属PLC设备品牌 /// public string EquipBrand { get; set; } /// /// 目标表 /// public string TargetTable { get; set; } /// /// Plc别名 /// public string PlcFiledName { get; set; } /// /// 数量 /// public int ThisCount { get; set; } /// /// 类型 /// public int ThisType { get; set; } /// /// 数据项 /// public List ItemList { get; set; } } }