using System; //Nhibernate Code Generation Template 1.0 //author:MythXin //blog:www.cnblogs.com/MythXin //Entity Code Generation Template namespace NXWMS.DataAccess.Entity { //PLC配置表 public class WCS_BAS_PLC { /// /// 系统主键 /// public int PLC_ID{get;set;} /// /// NewId主键 /// public string NEWID{get;set;} /// /// PLC编码 /// public string PLC_CODE{get;set;} /// /// PLC名称 /// public string PLC_NAME{get;set;} /// /// PLC连接方式。10:OPC;20:PLC直连;30:SOCKET链接。 /// public int CONN_TYPE_CODE{get;set;} /// /// PLC类型。10:西门子(simens 7);20:三菱;30:欧姆龙;40:倍福;50:施耐德。 /// public int PLC_TYPE_CODE{get;set;} /// /// IP地址 /// public string IP_ADDR{get;set;} /// /// 端口号 /// public int PORT_NO{get;set;} /// /// 读取DB块 /// public int READ_BLOCK_NO{get;set;} /// /// 读取起始位置 /// public int READ_START_POS{get;set;} /// /// 读取长度 /// public int READ_LEN{get;set;} /// /// 写入DB块 /// public int WRITE_BLOCK_NO{get;set;} /// /// 写入起始位置 /// public int WRITE_START_POS{get;set;} /// /// 写入长度 /// public int WRITE_LEN{get;set;} /// /// 使用标识。0:禁用;1:启用。 /// public int USED_FLAG{get;set;} /// /// 删除标识。0:未删除;1:已删除。 /// public int DEL_FLAG{get;set;} /// /// 创建人 /// public int CREATE_BY{get;set;} /// /// 创建时间 /// public DateTime CREATE_TIME{get;set;} /// /// 更新人 /// public int UPDATE_BY{get;set;} /// /// 更新时间 /// public DateTime UPDATE_TIME{get;set;} /// /// 数据版本号 /// public int DATA_VERSION{get;set;} /// /// 备用字段1 /// public string REMARKS1{get;set;} /// /// 备用字段2 /// public string REMARKS2{get;set;} /// /// 备用字段3 /// public string REMARKS3{get;set;} /// /// 备用字段4 /// public string REMARKS4{get;set;} /// /// 备用字段5 /// public string REMARKS5{get;set;} } }