| | |
| | | |
| | | import java.io.Serializable; |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | public class UserVO implements Serializable { |
| | | |
| | |
| | | |
| | | private UserConditionEnum condition; |
| | | |
| | | private String conditionDetail; |
| | | private Integer tagId; |
| | | |
| | | public String getConditionDetail() { |
| | | return conditionDetail; |
| | | private List<Integer> deptIds; |
| | | |
| | | private List<Integer> tagIds; |
| | | |
| | | private List<Integer> excludeTagIds; |
| | | |
| | | private Integer pageIndex; |
| | | |
| | | private Integer pageSize; |
| | | |
| | | public List<Integer> getExcludeTagIds() { |
| | | return excludeTagIds; |
| | | } |
| | | |
| | | public void setConditionDetail(String conditionDetail) { |
| | | this.conditionDetail = conditionDetail; |
| | | public void setExcludeTagIds(List<Integer> excludeTagIds) { |
| | | this.excludeTagIds = excludeTagIds; |
| | | } |
| | | |
| | | public List<Integer> getTagIds() { |
| | | return tagIds; |
| | | } |
| | | |
| | | public void setTagIds(List<Integer> tagIds) { |
| | | this.tagIds = tagIds; |
| | | } |
| | | |
| | | public List<Integer> getDeptIds() { |
| | | return deptIds; |
| | | } |
| | | |
| | | public void setDeptIds(List<Integer> deptIds) { |
| | | this.deptIds = deptIds; |
| | | } |
| | | |
| | | 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 Integer getTagId() { |
| | | return tagId; |
| | | } |
| | | |
| | | public void setTagId(Integer tagId) { |
| | | this.tagId = tagId; |
| | | } |
| | | |
| | | public UserConditionEnum getCondition() { |