AnalysisDomesticlParam.java 688 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13
package pwc.taxtech.atms.dto.analysis;

/**
 * @Auther: Gary J Li
 * @Date: 14/03/2019 11:28
 * @Description:
 */
public class AnalysisDomesticlParam {

    private Integer type;

    private String period;

gary's avatar
gary committed
14 15
    private String companyName;

16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
    public Integer getType() {
        return type;
    }

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

    public String getPeriod() {
        return period;
    }

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

gary's avatar
gary committed
32 33 34 35 36 37 38
    public String getCompanyName() {
        return companyName;
    }

    public void setCompanyName(String companyName) {
        this.companyName = companyName;
    }
39
}