| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148 |
- package com.izouma.awesomeadmin.model;
- import java.util.*;
- import com.fasterxml.jackson.annotation.JsonAutoDetect;
- import com.fasterxml.jackson.annotation.JsonInclude;
- @JsonAutoDetect
- @JsonInclude(JsonInclude.Include.NON_NULL)
- public class ImgInfo{
- private Integer id;
- private String delFlag;
- private Date updateTime;
- private String updateUser;
- private Date createTime;
- private String createUser;
- private String url;
- private Date uploadTime;
- private Integer type;
- private Integer fatherId;
- private Integer rank;
- private String idStr;
- private String searchKey;
- /**
- * and,test_name,like,value;or,remark,=,123
- */
- private String advancedQuery;
- /**
- * column_name_,desc_;column_name_,asc
- */
- private String orderByStr;
- public Integer getId(){
- return this.id;
- }
- public void setId(Integer id){
- this.id = id;
- }
- public String getDelFlag(){
- return this.delFlag;
- }
- public void setDelFlag(String delFlag){
- this.delFlag = delFlag;
- }
- public Date getUpdateTime(){
- return this.updateTime;
- }
- public void setUpdateTime(Date updateTime){
- this.updateTime = updateTime;
- }
- public String getUpdateUser(){
- return this.updateUser;
- }
- public void setUpdateUser(String updateUser){
- this.updateUser = updateUser;
- }
- public Date getCreateTime(){
- return this.createTime;
- }
- public void setCreateTime(Date createTime){
- this.createTime = createTime;
- }
- public String getCreateUser(){
- return this.createUser;
- }
- public void setCreateUser(String createUser){
- this.createUser = createUser;
- }
- public String getUrl(){
- return this.url;
- }
- public void setUrl(String url){
- this.url = url;
- }
- public Date getUploadTime(){
- return this.uploadTime;
- }
- public void setUploadTime(Date uploadTime){
- this.uploadTime = uploadTime;
- }
- public Integer getType(){
- return this.type;
- }
- public void setType(Integer type){
- this.type = type;
- }
- public Integer getFatherId(){
- return this.fatherId;
- }
- public void setFatherId(Integer fatherId){
- this.fatherId = fatherId;
- }
- public Integer getRank(){
- return this.rank;
- }
- public void setRank(Integer rank){
- this.rank = rank;
- }
- public String getSearchKey() {
- return searchKey;
- }
- public void setSearchKey(String searchKey) {
- this.searchKey = searchKey;
- }
- public String getAdvancedQuery() {
- return advancedQuery;
- }
- public void setAdvancedQuery(String advancedQuery) {
- this.advancedQuery = advancedQuery;
- }
- public String getOrderByStr() {
- return orderByStr;
- }
- public void setOrderByStr(String orderByStr) {
- this.orderByStr = orderByStr;
- }
- public String getIdStr() {
- return idStr;
- }
- public void setIdStr(String idStr) {
- this.idStr = idStr;
- }
- }
|