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