D_C00014.java 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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_C00014 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_C00014_ROWS_RECODE> rows;//数据
  40. /**
  41. *数据
  42. */
  43. public void setRows(List <D_C00014_ROWS_RECODE> rows) {
  44. this.rows=rows;
  45. }
  46. /**
  47. *数据
  48. */
  49. public List <D_C00014_ROWS_RECODE> getRows() {
  50. return this.rows;
  51. }
  52. String totalMoney;//总金额
  53. /**
  54. *总金额
  55. */
  56. public void setTotalMoney(String totalMoney) {
  57. this.totalMoney=totalMoney;
  58. }
  59. /**
  60. *总金额
  61. */
  62. public String getTotalMoney() {
  63. return this.totalMoney;
  64. }
  65. }