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