A_ES0022.java 909 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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_ES0022 extends BaseMapModel implements Serializable {
  11. private static final long serialVersionUID = -1463838678425832212L;
  12. String value;//单位值
  13. /**
  14. *单位值
  15. */
  16. public void setValue(String value) {
  17. this.value=value;
  18. }
  19. /**
  20. *单位值
  21. */
  22. public String getValue() {
  23. return this.value;
  24. }
  25. String gutId;//单位组编号
  26. /**
  27. *单位组编号
  28. */
  29. public void setGutId(String gutId) {
  30. this.gutId=gutId;
  31. }
  32. /**
  33. *单位组编号
  34. */
  35. public String getGutId() {
  36. return this.gutId;
  37. }
  38. String sutId;//系统单位编号
  39. /**
  40. *系统单位编号
  41. */
  42. public void setSutId(String sutId) {
  43. this.sutId=sutId;
  44. }
  45. /**
  46. *系统单位编号
  47. */
  48. public String getSutId() {
  49. return this.sutId;
  50. }
  51. }