A_ES0022.java 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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. String gsutId;//单位组配置
  52. /**
  53. *单位组配置
  54. */
  55. public void setGsutId(String gsutId) {
  56. this.gsutId=gsutId;
  57. }
  58. /**
  59. *单位组配置
  60. */
  61. public String getGsutId() {
  62. return this.gsutId;
  63. }
  64. String utId;//默认单位Id
  65. /**
  66. *默认单位Id
  67. */
  68. public void setUtId(String utId) {
  69. this.utId=utId;
  70. }
  71. /**
  72. *默认单位Id
  73. */
  74. public String getUtId() {
  75. return this.utId;
  76. }
  77. }