A_ES0006.java 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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. }