D_ES0004.java 499 B

12345678910111213141516171819202122232425
  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 D_ES0004 extends BaseMapModel implements Serializable {
  11. private static final long serialVersionUID = -1463838678425832212L;
  12. String pcId;//项目组件Id
  13. /**
  14. *项目组件Id
  15. */
  16. public void setPcId(String pcId) {
  17. this.pcId=pcId;
  18. }
  19. /**
  20. *项目组件Id
  21. */
  22. public String getPcId() {
  23. return this.pcId;
  24. }
  25. }