1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- /**
- * 无锡发动机
- */
- 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;
- }
- String pid;//项目Id
- /**
- *项目Id
- */
- public void setPid(String pid) {
- this.pid=pid;
- }
- /**
- *项目Id
- */
- public String getPid() {
- return this.pid;
- }
- }
|