EnterpriseAccountSetOrgDto.java 3.82 KB
Newer Older
1
package pwc.taxtech.atms.dpo;
eddie.woo's avatar
eddie.woo committed
2

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

eddie.woo's avatar
eddie.woo committed
5 6 7 8 9
import java.util.Date;
import java.util.List;

public class EnterpriseAccountSetOrgDto {

10
    private String id;
11 12

    @JsonProperty("enterpriseAccountSetID")
13
    private String enterpriseAccountSetId;
14
    @JsonProperty("organizationID")
15
    private String organizationId;
16

eddie.woo's avatar
eddie.woo committed
17 18 19
    // 账套名称
    // The name of the enterprise account set
    private String enterpriseAccountSetName;
20

eddie.woo's avatar
eddie.woo committed
21 22 23
    // 机构名称
    // The name of the organization
    private String organizationName;
24

eddie.woo's avatar
eddie.woo committed
25
    private String effectiveDateStr;
26

eddie.woo's avatar
eddie.woo committed
27
    private String expiredDateStr;
28

eddie.woo's avatar
eddie.woo committed
29
    private Date effectiveDate;
30

eddie.woo's avatar
eddie.woo committed
31
    private Date expiredDate;
32

eddie.woo's avatar
eddie.woo committed
33 34 35
    private List<EnterpriseAccountSetOrgDto> overlapList;

    /**
36
     * @return the id
eddie.woo's avatar
eddie.woo committed
37
     */
38
    public String getId() {
39
        return id;
eddie.woo's avatar
eddie.woo committed
40 41 42 43
    }

    /**
     */
44 45
    public void setId(String id) {
        this.id = id;
eddie.woo's avatar
eddie.woo committed
46 47 48
    }

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

    /**
56
     * @param enterpriseAccountSetId the enterpriseAccountSetId to set
eddie.woo's avatar
eddie.woo committed
57
     */
58 59
    public void setEnterpriseAccountSetId(String enterpriseAccountSetId) {
        this.enterpriseAccountSetId = enterpriseAccountSetId;
eddie.woo's avatar
eddie.woo committed
60 61 62
    }

    /**
63
     * @return the organizationId
eddie.woo's avatar
eddie.woo committed
64
     */
65 66
    public String getOrganizationId() {
        return organizationId;
eddie.woo's avatar
eddie.woo committed
67 68 69
    }

    /**
70
     * @param organizationId the organizationId to set
eddie.woo's avatar
eddie.woo committed
71
     */
72 73
    public void setOrganizationId(String organizationId) {
        this.organizationId = organizationId;
eddie.woo's avatar
eddie.woo committed
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 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172
    }

    /**
     * @return the enterpriseAccountSetName
     */
    public String getEnterpriseAccountSetName() {
        return enterpriseAccountSetName;
    }

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

    /**
     * @return the organizationName
     */
    public String getOrganizationName() {
        return organizationName;
    }

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

    /**
     * @return the effectiveDateStr
     */
    public String getEffectiveDateStr() {
        return effectiveDateStr;
    }

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

    /**
     * @return the expiredDateStr
     */
    public String getExpiredDateStr() {
        return expiredDateStr;
    }

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

    /**
     * @return the effectiveDate
     */
    public Date getEffectiveDate() {
        return effectiveDate;
    }

    /**
     * @param effectiveDate the effectiveDate to set
     */
    public void setEffectiveDate(Date effectiveDate) {
        this.effectiveDate = effectiveDate;
    }

    /**
     * @return the expiredDate
     */
    public Date getExpiredDate() {
        return expiredDate;
    }

    /**
     * @param expiredDate the expiredDate to set
     */
    public void setExpiredDate(Date expiredDate) {
        this.expiredDate = expiredDate;
    }

    /**
     * @return the overlapList
     */
    public List<EnterpriseAccountSetOrgDto> getOverlapList() {
        return overlapList;
    }

    /**
     * @param overlapList the overlapList to set
     */
    public void setOverlapList(List<EnterpriseAccountSetOrgDto> overlapList) {
        this.overlapList = overlapList;
    }
173 174


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