D_BES001_ROWS_RECODE.java 810 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 D_BES001_ROWS_RECODE extends BaseMapModel implements Serializable {
  11. private static final long serialVersionUID = -1463838678425832212L;
  12. String type;//类型
  13. /**
  14. *类型
  15. */
  16. public void setType(String type) {
  17. this.type=type;
  18. }
  19. /**
  20. *类型
  21. */
  22. public String getType() {
  23. return this.type;
  24. }
  25. String tag;//显示
  26. /**
  27. *显示
  28. */
  29. public void setTag(String tag) {
  30. this.tag=tag;
  31. }
  32. /**
  33. *显示
  34. */
  35. public String getTag() {
  36. return this.tag;
  37. }
  38. String val;//值
  39. /**
  40. *值
  41. */
  42. public void setVal(String val) {
  43. this.val=val;
  44. }
  45. /**
  46. *值
  47. */
  48. public String getVal() {
  49. return this.val;
  50. }
  51. }