You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
975 B
C#

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