QueryVoucherParmDto.java 1.64 KB
Newer Older
1 2
package pwc.taxtech.atms.dto.vatdto;

3
import pwc.taxtech.atms.dpo.PagingDto;
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 68 69 70 71 72 73 74 75 76 77 78 79 80

import java.util.List;

public class QueryVoucherParmDto {
    private List<QueryConditionDto> listQueryCondition;
    private PagingDto pagingInfo;
    private int mainRelation;
    private boolean allJe;
    private boolean isEntryShow;
    private int period;
    private String vid;
    private String group;

    public List<QueryConditionDto> getListQueryCondition() {
        return listQueryCondition;
    }

    public void setListQueryCondition(List<QueryConditionDto> listQueryCondition) {
        this.listQueryCondition = listQueryCondition;
    }

    public PagingDto getPagingInfo() {
        return pagingInfo;
    }

    public void setPagingInfo(PagingDto pagingInfo) {
        this.pagingInfo = pagingInfo;
    }

    public int getMainRelation() {
        return mainRelation;
    }

    public void setMainRelation(int mainRelation) {
        this.mainRelation = mainRelation;
    }

    public boolean isAllJe() {
        return allJe;
    }

    public void setAllJe(boolean allJe) {
        this.allJe = allJe;
    }

    public boolean isEntryShow() {
        return isEntryShow;
    }

    public void setEntryShow(boolean entryShow) {
        isEntryShow = entryShow;
    }

    public int getPeriod() {
        return period;
    }

    public void setPeriod(int period) {
        this.period = period;
    }

    public String getVid() {
        return vid;
    }

    public void setVid(String vid) {
        this.vid = vid;
    }

    public String getGroup() {
        return group;
    }

    public void setGroup(String group) {
        this.group = group;
    }
}