A_ES0007.java 904 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. /**
  2. * 无锡发动机
  3. */
  4. package com.miniframe.generate.comm.es;
  5. import com.miniframe.core.BaseMapModel;
  6. import java.io.Serializable;
  7. /**
  8. * 项目组件连线删除
  9. */
  10. public class A_ES0007 extends BaseMapModel implements Serializable {
  11. private static final long serialVersionUID = -1463838678425832212L;
  12. String npcId;//N节点项目组件Id
  13. /**
  14. *N节点项目组件Id
  15. */
  16. public void setNpcId(String npcId) {
  17. this.npcId=npcId;
  18. }
  19. /**
  20. *N节点项目组件Id
  21. */
  22. public String getNpcId() {
  23. return this.npcId;
  24. }
  25. String pcId;//项目组件Id
  26. /**
  27. *项目组件Id
  28. */
  29. public void setPcId(String pcId) {
  30. this.pcId=pcId;
  31. }
  32. /**
  33. *项目组件Id
  34. */
  35. public String getPcId() {
  36. return this.pcId;
  37. }
  38. int type;//连线类型
  39. /**
  40. *连线类型
  41. */
  42. public void setType(int type) {
  43. this.type=type;
  44. }
  45. /**
  46. *连线类型
  47. */
  48. public int getType() {
  49. return this.type;
  50. }
  51. }