QueryOperateParamDto.java 1.36 KB
Newer Older
eddie.woo's avatar
eddie.woo committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
package pwc.taxtech.atms.dto;

import java.util.List;

public class QueryOperateParamDto {

    private String searchText;
    
    private String moduleName;
    
    private String userName;
    
    private List<String> filterOperationObjectList;
    
    private Integer logType;
    
    private PagingDto pageInfo;

    public String getSearchText() {
        return searchText;
    }

    public void setSearchText(String searchText) {
        this.searchText = searchText;
    }

    public String getModuleName() {
        return moduleName;
    }

    public void setModuleName(String moduleName) {
        this.moduleName = moduleName;
    }

    public String getUserName() {
        return userName;
    }

    public void setUserName(String userName) {
        this.userName = userName;
    }

    public List<String> getFilterOperationObjectList() {
        return filterOperationObjectList;
    }

    public void setFilterOperationObjectList(List<String> filterOperationObjectList) {
        this.filterOperationObjectList = filterOperationObjectList;
    }

    public Integer getLogType() {
        return logType;
    }

    public void setLogType(Integer logType) {
        this.logType = logType;
    }

    public PagingDto getPageInfo() {
        return pageInfo;
    }

    public void setPageInfo(PagingDto pageInfo) {
        this.pageInfo = pageInfo;
    }

}