VoucherTmplDto.java 2.61 KB
Newer Older
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 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143
package pwc.taxtech.atms.dto.vatdto;

import pwc.taxtech.atms.constant.enums.VoucherSearchEnum;

import java.util.List;

public class VoucherTmplDto {
    private String columnName;
    private String columnText;
    private String lkh;
    private VoucherSearchEnum logic;
    private String relation;
    private String rkh;
    private int row;
    private int sort;
    private String sql;
    private List<String> sqlList;
    private int tmplCode;
    private int tmplId;
    private String tmplName;
    private int type;
    private String value;

    public String getColumnName() {
        return columnName;
    }

    public void setColumnName(String columnName) {
        this.columnName = columnName;
    }

    public String getColumnText() {
        return columnText;
    }

    public void setColumnText(String columnText) {
        this.columnText = columnText;
    }

    public String getLkh() {
        return lkh;
    }

    public void setLkh(String lkh) {
        this.lkh = lkh;
    }

    public VoucherSearchEnum getLogic() {
        return logic;
    }

    public void setLogic(VoucherSearchEnum logic) {
        this.logic = logic;
    }

    public String getRelation() {
        return relation;
    }

    public void setRelation(String relation) {
        this.relation = relation;
    }

    public String getRkh() {
        return rkh;
    }

    public void setRkh(String rkh) {
        this.rkh = rkh;
    }

    public int getRow() {
        return row;
    }

    public void setRow(int row) {
        this.row = row;
    }

    public int getSort() {
        return sort;
    }

    public void setSort(int sort) {
        this.sort = sort;
    }

    public String getSql() {
        return sql;
    }

    public void setSql(String sql) {
        this.sql = sql;
    }

    public List<String> getSqlList() {
        return sqlList;
    }

    public void setSqlList(List<String> sqlList) {
        this.sqlList = sqlList;
    }

    public int getTmplCode() {
        return tmplCode;
    }

    public void setTmplCode(int tmplCode) {
        this.tmplCode = tmplCode;
    }

    public int getTmplId() {
        return tmplId;
    }

    public void setTmplId(int tmplId) {
        this.tmplId = tmplId;
    }

    public String getTmplName() {
        return tmplName;
    }

    public void setTmplName(String tmplName) {
        this.tmplName = tmplName;
    }

    public int getType() {
        return type;
    }

    public void setType(int type) {
        this.type = type;
    }

    public String getValue() {
        return value;
    }

    public void setValue(String value) {
        this.value = value;
    }
}