ImgInfo.java 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. package com.izouma.awesomeadmin.model;
  2. import java.util.*;
  3. import com.fasterxml.jackson.annotation.JsonAutoDetect;
  4. import com.fasterxml.jackson.annotation.JsonInclude;
  5. @JsonAutoDetect
  6. @JsonInclude(JsonInclude.Include.NON_NULL)
  7. public class ImgInfo{
  8. private Integer id;
  9. private String delFlag;
  10. private Date updateTime;
  11. private String updateUser;
  12. private Date createTime;
  13. private String createUser;
  14. private String url;
  15. private Date uploadTime;
  16. private Integer type;
  17. private Integer fatherId;
  18. private Integer rank;
  19. private String idStr;
  20. private String searchKey;
  21. /**
  22. * and,test_name,like,value;or,remark,=,123
  23. */
  24. private String advancedQuery;
  25. /**
  26. * column_name_,desc_;column_name_,asc
  27. */
  28. private String orderByStr;
  29. public Integer getId(){
  30. return this.id;
  31. }
  32. public void setId(Integer id){
  33. this.id = id;
  34. }
  35. public String getDelFlag(){
  36. return this.delFlag;
  37. }
  38. public void setDelFlag(String delFlag){
  39. this.delFlag = delFlag;
  40. }
  41. public Date getUpdateTime(){
  42. return this.updateTime;
  43. }
  44. public void setUpdateTime(Date updateTime){
  45. this.updateTime = updateTime;
  46. }
  47. public String getUpdateUser(){
  48. return this.updateUser;
  49. }
  50. public void setUpdateUser(String updateUser){
  51. this.updateUser = updateUser;
  52. }
  53. public Date getCreateTime(){
  54. return this.createTime;
  55. }
  56. public void setCreateTime(Date createTime){
  57. this.createTime = createTime;
  58. }
  59. public String getCreateUser(){
  60. return this.createUser;
  61. }
  62. public void setCreateUser(String createUser){
  63. this.createUser = createUser;
  64. }
  65. public String getUrl(){
  66. return this.url;
  67. }
  68. public void setUrl(String url){
  69. this.url = url;
  70. }
  71. public Date getUploadTime(){
  72. return this.uploadTime;
  73. }
  74. public void setUploadTime(Date uploadTime){
  75. this.uploadTime = uploadTime;
  76. }
  77. public Integer getType(){
  78. return this.type;
  79. }
  80. public void setType(Integer type){
  81. this.type = type;
  82. }
  83. public Integer getFatherId(){
  84. return this.fatherId;
  85. }
  86. public void setFatherId(Integer fatherId){
  87. this.fatherId = fatherId;
  88. }
  89. public Integer getRank(){
  90. return this.rank;
  91. }
  92. public void setRank(Integer rank){
  93. this.rank = rank;
  94. }
  95. public String getSearchKey() {
  96. return searchKey;
  97. }
  98. public void setSearchKey(String searchKey) {
  99. this.searchKey = searchKey;
  100. }
  101. public String getAdvancedQuery() {
  102. return advancedQuery;
  103. }
  104. public void setAdvancedQuery(String advancedQuery) {
  105. this.advancedQuery = advancedQuery;
  106. }
  107. public String getOrderByStr() {
  108. return orderByStr;
  109. }
  110. public void setOrderByStr(String orderByStr) {
  111. this.orderByStr = orderByStr;
  112. }
  113. public String getIdStr() {
  114. return idStr;
  115. }
  116. public void setIdStr(String idStr) {
  117. this.idStr = idStr;
  118. }
  119. }