对比新文件 |
| | |
| | | package com.gk.firework.Domain.Utils; |
| | | |
| | | import javax.validation.constraints.NotEmpty; |
| | | import javax.validation.constraints.NotNull; |
| | | import java.util.Map; |
| | | |
| | | public class FilterObject { |
| | | |
| | | @NotEmpty |
| | | @NotNull |
| | | private Integer pageIndex; |
| | | @NotNull |
| | | @NotEmpty |
| | | private Integer pageSize; |
| | | |
| | | private Map<String, Object> filter; |
| | | |
| | | |
| | | public Integer getPageIndex() { |
| | | return pageIndex; |
| | | } |
| | | |
| | | public void setPageIndex(Integer pageIndex) { |
| | | this.pageIndex = pageIndex; |
| | | } |
| | | |
| | | public Integer getPageSize() { |
| | | return pageSize; |
| | | } |
| | | |
| | | public void setPageSize(Integer pageSize) { |
| | | this.pageSize = pageSize; |
| | | } |
| | | |
| | | public Map<String, Object> getFilter() { |
| | | return filter; |
| | | } |
| | | |
| | | public void setFilter(Map<String, Object> filter) { |
| | | this.filter = filter; |
| | | } |
| | | } |