A_ES0006.java 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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_ES0006 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 pcId1;//项目组件Id
  26. /**
  27. *项目组件Id
  28. */
  29. public void setPcId1(String pcId1) {
  30. this.pcId1=pcId1;
  31. }
  32. /**
  33. *项目组件Id
  34. */
  35. public String getPcId1() {
  36. return this.pcId1;
  37. }
  38. String pcId2;//项目组件Id
  39. /**
  40. *项目组件Id
  41. */
  42. public void setPcId2(String pcId2) {
  43. this.pcId2=pcId2;
  44. }
  45. /**
  46. *项目组件Id
  47. */
  48. public String getPcId2() {
  49. return this.pcId2;
  50. }
  51. int type;//连线类型
  52. /**
  53. *连线类型
  54. */
  55. public void setType(int type) {
  56. this.type=type;
  57. }
  58. /**
  59. *连线类型
  60. */
  61. public int getType() {
  62. return this.type;
  63. }
  64. String pid;//项目Id
  65. /**
  66. *项目Id
  67. */
  68. public void setPid(String pid) {
  69. this.pid=pid;
  70. }
  71. /**
  72. *项目Id
  73. */
  74. public String getPid() {
  75. return this.pid;
  76. }
  77. }