using System;
|
|
namespace Aborlen.Model
|
|
{
|
|
/// <summary>
|
|
/// 数据表实体类:StationInfo
|
|
/// </summary>
|
|
[Serializable()]
|
|
public class StationInfo :BasicEntity<StationInfo>
|
|
{
|
|
//当前代码为系统自动生成
|
|
|
|
|
|
|
|
/// <summary>
|
|
/// String:工位唯一码(地区编号+工厂编号+车间编号+线体编号+工位号)
|
|
/// </summary>
|
|
[SqlSugar.SugarColumn(IsPrimaryKey = true)]
|
|
public String StationId {get;set;}
|
|
|
|
/// <summary>
|
|
/// String:工位号
|
|
/// </summary>
|
|
|
|
public String StationCode {get;set;}
|
|
|
|
/// <summary>
|
|
/// String:工位名称
|
|
/// </summary>
|
|
|
|
public String StationName {get;set;}
|
|
|
|
/// <summary>
|
|
/// String:标签配置代码
|
|
/// </summary>
|
|
|
|
public String TagConfigCode {get;set;}
|
|
|
|
/// <summary>
|
|
/// String:PLC型号,例如新门子S7-1500:S1500
|
|
/// </summary>
|
|
|
|
public String PlcType {get;set;}
|
|
|
|
/// <summary>
|
|
/// String:PLC厂商
|
|
/// </summary>
|
|
|
|
public String PlcModel {get;set;}
|
|
|
|
/// <summary>
|
|
/// String:PLC IP地址
|
|
/// </summary>
|
|
|
|
public String IpAddress {get;set;}
|
|
|
|
/// <summary>
|
|
/// String:通道Id
|
|
/// </summary>
|
|
|
|
public String ChannelId {get;set;}
|
|
|
|
/// <summary>
|
|
/// String:数据区Id(db230)
|
|
/// </summary>
|
|
|
|
public String AreaId {get;set;}
|
|
|
|
/// <summary>
|
|
/// Int32:数据字节偏移地址,多工位共用DB情况
|
|
/// </summary>
|
|
|
|
public Int32 ByteOffset {get;set;}
|
|
|
|
/// <summary>
|
|
/// String:PLCDLL文件名称
|
|
/// </summary>
|
|
|
|
public String PlcComFileName {get;set;}
|
|
|
|
/// <summary>
|
|
/// String:PLCDLL连接实例类名称
|
|
/// </summary>
|
|
|
|
public String PlcInstanceClassName {get;set;}
|
|
|
|
/// <summary>
|
|
/// String:
|
|
/// </summary>
|
|
|
|
public String StationFunctionCode {get;set;}
|
|
|
|
}
|
|
}
|
|
|