A_ES0025.java 530 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_ES0025 extends BaseMapModel implements Serializable {
  11. private static final long serialVersionUID = -1463838678425832212L;
  12. String sutId;//系统单位编号
  13. /**
  14. *系统单位编号
  15. */
  16. public void setSutId(String sutId) {
  17. this.sutId=sutId;
  18. }
  19. /**
  20. *系统单位编号
  21. */
  22. public String getSutId() {
  23. return this.sutId;
  24. }
  25. }