A_ES0019.java 503 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 A_ES0019 extends BaseMapModel implements Serializable {
  11. private static final long serialVersionUID = -1463838678425832212L;
  12. String gutId;//单位组编号
  13. /**
  14. *单位组编号
  15. */
  16. public void setGutId(String gutId) {
  17. this.gutId=gutId;
  18. }
  19. /**
  20. *单位组编号
  21. */
  22. public String getGutId() {
  23. return this.gutId;
  24. }
  25. }