D_ES0021_ROWS_RECODE.java 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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_ES0021_ROWS_RECODE 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. String nameZh;//单位表中文名
  26. /**
  27. *单位表中文名
  28. */
  29. public void setNameZh(String nameZh) {
  30. this.nameZh=nameZh;
  31. }
  32. /**
  33. *单位表中文名
  34. */
  35. public String getNameZh() {
  36. return this.nameZh;
  37. }
  38. String nameEn;//单位表英文名
  39. /**
  40. *单位表英文名
  41. */
  42. public void setNameEn(String nameEn) {
  43. this.nameEn=nameEn;
  44. }
  45. /**
  46. *单位表英文名
  47. */
  48. public String getNameEn() {
  49. return this.nameEn;
  50. }
  51. int ser;//序号
  52. /**
  53. *序号
  54. */
  55. public void setSer(int ser) {
  56. this.ser=ser;
  57. }
  58. /**
  59. *序号
  60. */
  61. public int getSer() {
  62. return this.ser;
  63. }
  64. }