TaxPayerReportRuleDto.java 1.44 KB
Newer Older
1 2
package pwc.taxtech.atms.dto;

3 4
import com.fasterxml.jackson.annotation.JsonProperty;

5 6 7
import java.util.List;

public class TaxPayerReportRuleDto {
8
    private String id;
frank.xa.zhang's avatar
frank.xa.zhang committed
9 10
    private int isDefault;
    private int taxPayerType;
11
    private String templateGroupId;
frank.xa.zhang's avatar
frank.xa.zhang committed
12
    private List<String> orgs;
13 14
    private Long editKey;
    private Boolean isNotPersistent;
15

16
    public String getId() {
17 18 19
        return id;
    }

20
    public void setId(String id) {
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
        this.id = id;
    }

    public int getIsDefault() {
        return isDefault;
    }

    public void setIsDefault(int isDefault) {
        this.isDefault = isDefault;
    }

    public int getTaxPayerType() {
        return taxPayerType;
    }

    public void setTaxPayerType(int taxPayerType) {
        this.taxPayerType = taxPayerType;
    }

40
    public String getTemplateGroupId() {
41 42 43
        return templateGroupId;
    }

44
    public void setTemplateGroupId(String templateGroupId) {
45 46 47 48 49 50 51 52 53 54 55 56
        this.templateGroupId = templateGroupId;
    }

    public List<String> getOrgs() {
        return orgs;
    }

    public void setOrgs(List<String> orgs) {
        this.orgs = orgs;
    }


57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
    public Long getEditKey() {
        return editKey;
    }

    public void setEditKey(Long editKey) {
        this.editKey = editKey;
    }

    public Boolean getNotPersistent() {
        return isNotPersistent;
    }

    public void setNotPersistent(Boolean notPersistent) {
        isNotPersistent = notPersistent;
    }
72
}