123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- /**
- * 无锡发动机
- */
- package com.miniframe.generate.comm.es;
- import com.miniframe.core.BaseMapModel;
- import java.io.Serializable;
- /**
- * 项目组件连线删除
- */
- public class A_ES0007 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 pcId;//项目组件Id
- /**
- *项目组件Id
- */
- public void setPcId(String pcId) {
- this.pcId=pcId;
- }
- /**
- *项目组件Id
- */
- public String getPcId() {
- return this.pcId;
- }
- int type;//连线类型
- /**
- *连线类型
- */
- public void setType(int type) {
- this.type=type;
- }
- /**
- *连线类型
- */
- public int getType() {
- return this.type;
- }
- }
|