D_C00022.java 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. /**
  2. * 系统服务
  3. */
  4. package com.miniframe.generate.comm.system;
  5. import com.miniframe.core.BaseMapModel;
  6. import java.io.Serializable;
  7. import java.util.*;
  8. /**
  9. * 获取商品列表
  10. */
  11. public class D_C00022 extends BaseMapModel implements Serializable {
  12. private static final long serialVersionUID = -1463838678425832212L;
  13. int total;//总数
  14. /**
  15. *总数
  16. */
  17. public void setTotal(int total) {
  18. this.total=total;
  19. }
  20. /**
  21. *总数
  22. */
  23. public int getTotal() {
  24. return this.total;
  25. }
  26. int count;//当页总数
  27. /**
  28. *当页总数
  29. */
  30. public void setCount(int count) {
  31. this.count=count;
  32. }
  33. /**
  34. *当页总数
  35. */
  36. public int getCount() {
  37. return this.count;
  38. }
  39. List <D_C00022_ROWS_RECODE> rows;//数据
  40. /**
  41. *数据
  42. */
  43. public void setRows(List <D_C00022_ROWS_RECODE> rows) {
  44. this.rows=rows;
  45. }
  46. /**
  47. *数据
  48. */
  49. public List <D_C00022_ROWS_RECODE> getRows() {
  50. return this.rows;
  51. }
  52. String orderSortName;//排序表头
  53. /**
  54. *排序表头
  55. */
  56. public void setOrderSortName(String orderSortName) {
  57. this.orderSortName=orderSortName;
  58. }
  59. /**
  60. *排序表头
  61. */
  62. public String getOrderSortName() {
  63. return this.orderSortName;
  64. }
  65. String orderSortType;//排序方向
  66. /**
  67. *排序方向
  68. */
  69. public void setOrderSortType(String orderSortType) {
  70. this.orderSortType=orderSortType;
  71. }
  72. /**
  73. *排序方向
  74. */
  75. public String getOrderSortType() {
  76. return this.orderSortType;
  77. }
  78. }