A_HS0000.java 897 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. /**
  2. * 系统服务
  3. */
  4. package com.miniframe.generate.comm.system;
  5. import com.miniframe.core.BaseMapModel;
  6. import java.io.Serializable;
  7. /**
  8. * 通用查询
  9. */
  10. public class A_HS0000 extends BaseMapModel implements Serializable {
  11. private static final long serialVersionUID = -1463838678425832212L;
  12. String columns;//字段列表
  13. /**
  14. *字段列表
  15. */
  16. public void setColumns(String columns) {
  17. this.columns=columns;
  18. }
  19. /**
  20. *字段列表
  21. */
  22. public String getColumns() {
  23. return this.columns;
  24. }
  25. String table;//表或试图
  26. /**
  27. *表或试图
  28. */
  29. public void setTable(String table) {
  30. this.table=table;
  31. }
  32. /**
  33. *表或试图
  34. */
  35. public String getTable() {
  36. return this.table;
  37. }
  38. String where;//查询条件
  39. /**
  40. *查询条件
  41. */
  42. public void setWhere(String where) {
  43. this.where=where;
  44. }
  45. /**
  46. *查询条件
  47. */
  48. public String getWhere() {
  49. return this.where;
  50. }
  51. }