EnterpriseAccountUploadDto.java 1.77 KB
Newer Older
eddie.woo's avatar
eddie.woo committed
1 2
package pwc.taxtech.atms.dto.epaccount;

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

eddie.woo's avatar
eddie.woo committed
5 6
public class EnterpriseAccountUploadDto {

7 8 9 10
    private String name;

    private String code;
    @JsonProperty("enterpriseAccountSetID")
11
    private String enterpriseAccountSetId;
12 13 14

    private String selectedOrgList;

eddie.woo's avatar
eddie.woo committed
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
    private String isImportAppend;

    /**
     * @return the name
     */
    public String getName() {
        return name;
    }

    /**
     * @param name the name to set
     */
    public void setName(String name) {
        this.name = name;
    }

    /**
     * @return the code
     */
    public String getCode() {
        return code;
    }

    /**
     * @param code the code to set
     */
    public void setCode(String code) {
        this.code = code;
    }

    /**
46
     * @return the enterpriseAccountSetId
eddie.woo's avatar
eddie.woo committed
47
     */
48 49
    public String getEnterpriseAccountSetId() {
        return enterpriseAccountSetId;
eddie.woo's avatar
eddie.woo committed
50 51 52
    }

    /**
53
     * @param enterpriseAccountSetId the enterpriseAccountSetId to set
eddie.woo's avatar
eddie.woo committed
54
     */
55 56
    public void setEnterpriseAccountSetId(String enterpriseAccountSetId) {
        this.enterpriseAccountSetId = enterpriseAccountSetId;
eddie.woo's avatar
eddie.woo committed
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
    }

    /**
     * @return the selectedOrgList
     */
    public String getSelectedOrgList() {
        return selectedOrgList;
    }

    /**
     * @param selectedOrgList the selectedOrgList to set
     */
    public void setSelectedOrgList(String selectedOrgList) {
        this.selectedOrgList = selectedOrgList;
    }

    /**
     * @return the isImportAppend
     */
    public String getIsImportAppend() {
        return isImportAppend;
    }

    /**
     * @param isImportAppend the isImportAppend to set
     */
    public void setIsImportAppend(String isImportAppend) {
        this.isImportAppend = isImportAppend;
85 86 87
    }


eddie.woo's avatar
eddie.woo committed
88
}