using System;
|
|
namespace Aborlen.Model
|
|
{
|
|
/// <summary>
|
|
/// 数据表实体类:DataCollectConfig
|
|
/// </summary>
|
|
[Serializable()]
|
|
public class DataCollectConfig :BasicEntity<DataCollectConfig>
|
|
{
|
|
//当前代码为系统自动生成
|
|
|
|
|
|
|
|
/// <summary>
|
|
/// Int32:
|
|
/// </summary>
|
|
[SqlSugar.SugarColumn(IsPrimaryKey = true)]
|
|
public Int32 Id {get;set;}
|
|
|
|
/// <summary>
|
|
/// String:地区编号+工厂编号+车间编号+线体编号+PLC类型编号(配置唯一码)
|
|
/// </summary>
|
|
|
|
public String TagConfigCode {get;set;}
|
|
|
|
/// <summary>
|
|
/// Int32:允许每个工位多个配置,当前序号表示工位配置的排序,目前无实际意义,(备用字段)
|
|
/// </summary>
|
|
|
|
public Int32? ConfigSerialId {get;set;}
|
|
|
|
/// <summary>
|
|
/// Int32:标签标志码
|
|
/// </summary>
|
|
|
|
public Int32 TagMarkCode {get;set;}
|
|
|
|
/// <summary>
|
|
/// String:标签描述
|
|
/// </summary>
|
|
|
|
public String TagDescription {get;set;}
|
|
|
|
/// <summary>
|
|
/// String:当变量结果值为当前指定的值时,才触发对应动作
|
|
/// </summary>
|
|
|
|
public String CollectMark {get;set;}
|
|
|
|
/// <summary>
|
|
/// String:SaveData:保存质量数据 SaveMaterial:保存物料数据
|
|
/// </summary>
|
|
|
|
public String CollectCode {get;set;}
|
|
|
|
/// <summary>
|
|
/// String:采集功能描述
|
|
/// </summary>
|
|
|
|
public String CollectDescription {get;set;}
|
|
|
|
/// <summary>
|
|
/// Int32:表示需要采集索引对应的TagMarkCode
|
|
/// </summary>
|
|
|
|
public Int32 CollectIndexMarkCode {get;set;}
|
|
|
|
/// <summary>
|
|
/// Int32:表示需要采集数据明细对应的TagMarkCode
|
|
/// </summary>
|
|
|
|
public Int32 CollectDetailMarkCode {get;set;}
|
|
|
|
/// <summary>
|
|
/// String:索引表或采集数据主表名称
|
|
/// </summary>
|
|
|
|
public String CollectIndexTableName {get;set;}
|
|
|
|
/// <summary>
|
|
/// String:索引表或采集数据主表名称
|
|
/// </summary>
|
|
|
|
public String CollectTableName {get;set;}
|
|
|
|
}
|
|
}
|
|
|