Download.java 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. package com.post.pageModel;
  2. import java.io.Serializable;
  3. import java.sql.Timestamp;
  4. public class Download implements Serializable {
  5. private String cid;
  6. private String cfilename;
  7. private String cfilepath;
  8. private Timestamp cuploaddate;
  9. private Integer ccount;
  10. private String userName;
  11. private String userId;
  12. private String ids;
  13. private int page;// 当前页
  14. private int rows;// 每页显示记录数
  15. private String sort;// 排序字段名
  16. private String order;// 按什么排序(asc,desc)
  17. public String getCid() {
  18. return cid;
  19. }
  20. public void setCid(String cid) {
  21. this.cid = cid;
  22. }
  23. public String getCfilename() {
  24. return cfilename;
  25. }
  26. public void setCfilename(String cfilename) {
  27. this.cfilename = cfilename;
  28. }
  29. public String getCfilepath() {
  30. return cfilepath;
  31. }
  32. public void setCfilepath(String cfilepath) {
  33. this.cfilepath = cfilepath;
  34. }
  35. public Timestamp getCuploaddate() {
  36. return cuploaddate;
  37. }
  38. public void setCuploaddate(Timestamp cuploaddate) {
  39. this.cuploaddate = cuploaddate;
  40. }
  41. public Integer getCcount() {
  42. return ccount;
  43. }
  44. public void setCcount(Integer ccount) {
  45. this.ccount = ccount;
  46. }
  47. public String getUserName() {
  48. return userName;
  49. }
  50. public void setUserName(String userName) {
  51. this.userName = userName;
  52. }
  53. public String getUserId() {
  54. return userId;
  55. }
  56. public void setUserId(String userId) {
  57. this.userId = userId;
  58. }
  59. public String getIds() {
  60. return ids;
  61. }
  62. public void setIds(String ids) {
  63. this.ids = ids;
  64. }
  65. public int getPage() {
  66. return page;
  67. }
  68. public void setPage(int page) {
  69. this.page = page;
  70. }
  71. public int getRows() {
  72. return rows;
  73. }
  74. public void setRows(int rows) {
  75. this.rows = rows;
  76. }
  77. public String getSort() {
  78. return sort;
  79. }
  80. public void setSort(String sort) {
  81. this.sort = sort;
  82. }
  83. public String getOrder() {
  84. return order;
  85. }
  86. public void setOrder(String order) {
  87. this.order = order;
  88. }
  89. }