12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- /**
- * 无锡发动机
- */
- package com.miniframe.generate.comm.es;
- import com.miniframe.core.BaseMapModel;
- import java.io.Serializable;
- /**
- * 项目组件连线
- */
- public class A_ES0006 extends BaseMapModel implements Serializable {
- private static final long serialVersionUID = -1463838678425832212L;
- String npcId;//N节点项目组件Id
- /**
- *N节点项目组件Id
- */
- public void setNpcId(String npcId) {
- this.npcId=npcId;
- }
- /**
- *N节点项目组件Id
- */
- public String getNpcId() {
- return this.npcId;
- }
- String pcId1;//项目组件Id
- /**
- *项目组件Id
- */
- public void setPcId1(String pcId1) {
- this.pcId1=pcId1;
- }
- /**
- *项目组件Id
- */
- public String getPcId1() {
- return this.pcId1;
- }
- String pcId2;//项目组件Id
- /**
- *项目组件Id
- */
- public void setPcId2(String pcId2) {
- this.pcId2=pcId2;
- }
- /**
- *项目组件Id
- */
- public String getPcId2() {
- return this.pcId2;
- }
- int type;//连线类型
- /**
- *连线类型
- */
- public void setType(int type) {
- this.type=type;
- }
- /**
- *连线类型
- */
- public int getType() {
- return this.type;
- }
- }
|