ProjectDisplayDto.java 7.46 KB
Newer Older
1
package pwc.taxtech.atms.dpo;
2

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

5 6 7
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
8
import java.util.Map;
9 10

public class ProjectDisplayDto {
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
    private String clientCode;
    private String code;
    private Date createTime;
    private String dbName;
    private Date effectiveDate;
    private Integer endPeriod;
    @JsonProperty("enterpriseAccountSetID")
    private String enterpriseAccountSetId;
    private Date expiredDate;
    private Boolean haveCreateProject;
    private String id;
    @JsonProperty("industryID")
    private String industryId;
    private String industryName;
    private Boolean isActive;
    private String name;
    @JsonProperty("organizationID")
    private String organizationId;
    private String organizationName;
    private Map<Integer, Integer> projectStatusList;
    @JsonProperty("regionID")
    private String regionId;
    private String regionName;
    private Integer ruleType;
    @JsonProperty("serviceTypeID")
    private String serviceTypeId;
    private List<String> serviceTypeIds;
    private String serviceTypeName;
    private List<ServiceTypeTemplateGroup> serviceTypeTemplateGroupList;
    private Integer startPeriod;
    @JsonProperty("templateGroupID")
    private String templateGroupId;
    private String templateGroupName;
    private Date upDate;
    private Integer year;
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

    public String getClientCode() {
        return clientCode;
    }

    public void setClientCode(String clientCode) {
        this.clientCode = clientCode;
    }

    public String getCode() {
        return code;
    }

    public void setCode(String code) {
        this.code = code;
    }

    public Date getCreateTime() {
        return createTime;
    }

    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }

    public String getDbName() {
        return dbName;
    }

    public void setDbName(String dbName) {
        this.dbName = dbName;
    }

    public Date getEffectiveDate() {
        return effectiveDate;
    }

    public void setEffectiveDate(Date effectiveDate) {
        this.effectiveDate = effectiveDate;
    }

    public Integer getEndPeriod() {
        return endPeriod;
    }

    public void setEndPeriod(Integer endPeriod) {
        this.endPeriod = endPeriod;
    }

95 96
    public String getEnterpriseAccountSetId() {
        return enterpriseAccountSetId;
97 98
    }

99 100
    public void setEnterpriseAccountSetId(String enterpriseAccountSetId) {
        this.enterpriseAccountSetId = enterpriseAccountSetId;
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
    }

    public Date getExpiredDate() {
        return expiredDate;
    }

    public void setExpiredDate(Date expiredDate) {
        this.expiredDate = expiredDate;
    }

    public Boolean getHaveCreateProject() {
        return haveCreateProject;
    }

    public void setHaveCreateProject(Boolean haveCreateProject) {
        this.haveCreateProject = haveCreateProject;
    }

    public String getId() {
        return id;
    }

    public void setId(String id) {
        this.id = id;
    }

127 128
    public String getIndustryId() {
        return industryId;
129 130
    }

131 132
    public void setIndustryId(String industryId) {
        this.industryId = industryId;
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
    }

    public String getIndustryName() {
        return industryName;
    }

    public void setIndustryName(String industryName) {
        this.industryName = industryName;
    }

    public Boolean getActive() {
        return isActive;
    }

    public void setActive(Boolean active) {
        isActive = active;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

159 160
    public String getOrganizationId() {
        return organizationId;
161 162
    }

163 164
    public void setOrganizationId(String organizationId) {
        this.organizationId = organizationId;
165 166 167 168 169 170 171 172 173 174
    }

    public String getOrganizationName() {
        return organizationName;
    }

    public void setOrganizationName(String organizationName) {
        this.organizationName = organizationName;
    }

175 176
    public String getRegionId() {
        return regionId;
177 178
    }

179 180
    public void setRegionId(String regionId) {
        this.regionId = regionId;
181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198
    }

    public String getRegionName() {
        return regionName;
    }

    public void setRegionName(String regionName) {
        this.regionName = regionName;
    }

    public Integer getRuleType() {
        return ruleType;
    }

    public void setRuleType(Integer ruleType) {
        this.ruleType = ruleType;
    }

199 200
    public String getServiceTypeId() {
        return serviceTypeId;
201 202
    }

203 204
    public void setServiceTypeId(String serviceTypeId) {
        this.serviceTypeId = serviceTypeId;
205 206
    }

207 208
    public List<String> getServiceTypeIds() {
        return serviceTypeIds;
209 210
    }

211 212
    public void setServiceTypeIds(List<String> serviceTypeIds) {
        this.serviceTypeIds = serviceTypeIds;
213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238
    }

    public String getServiceTypeName() {
        return serviceTypeName;
    }

    public void setServiceTypeName(String serviceTypeName) {
        this.serviceTypeName = serviceTypeName;
    }

    public List<ServiceTypeTemplateGroup> getServiceTypeTemplateGroupList() {
        return serviceTypeTemplateGroupList;
    }

    public void setServiceTypeTemplateGroupList(List<ServiceTypeTemplateGroup> serviceTypeTemplateGroupList) {
        this.serviceTypeTemplateGroupList = serviceTypeTemplateGroupList;
    }

    public Integer getStartPeriod() {
        return startPeriod;
    }

    public void setStartPeriod(Integer startPeriod) {
        this.startPeriod = startPeriod;
    }

239 240
    public String getTemplateGroupId() {
        return templateGroupId;
241 242
    }

243 244
    public void setTemplateGroupId(String templateGroupId) {
        this.templateGroupId = templateGroupId;
245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277
    }

    public String getTemplateGroupName() {
        return templateGroupName;
    }

    public void setTemplateGroupName(String templateGroupName) {
        this.templateGroupName = templateGroupName;
    }

    public Date getUpDate() {
        return upDate;
    }

    public void setUpDate(Date upDate) {
        this.upDate = upDate;
    }

    public Integer getYear() {
        return year;
    }

    public void setYear(Integer year) {
        this.year = year;
    }

    public ProjectDisplayDto demo() {
        this.clientCode = "1";
        this.code = "1";
        this.createTime = new Date();
        this.dbName = "db";
        this.effectiveDate = new Date();
        this.endPeriod = 1;
278
        this.enterpriseAccountSetId = "1";
279 280 281
        this.expiredDate = new Date();
        this.haveCreateProject = true;
        this.id = "1";
282
        this.industryId = "1";
283 284 285
        this.industryName = "dname";
        this.isActive = true;
        this.name = "na";
286
        this.organizationId = "oid";
287
        this.organizationName = "oname";
288
        this.projectStatusList = null;
289
        this.regionId = "1";
290 291
        this.regionName = "rn";
        this.ruleType = 1;
292 293
        this.serviceTypeId = "1";
        this.serviceTypeIds = new ArrayList<>();
294
        this.serviceTypeName = "sn";
295
        this.serviceTypeTemplateGroupList = new ArrayList<>();
296
        this.startPeriod = 1;
297
        this.templateGroupId = "1";
298 299 300 301 302 303
        this.templateGroupName = "tn";
        this.upDate = new Date();
        this.year = 1;
        return this;
    }

304 305 306 307 308 309 310
    public Map<Integer, Integer> getProjectStatusList() {
        return projectStatusList;
    }

    public void setProjectStatusList(Map<Integer, Integer> projectStatusList) {
        this.projectStatusList = projectStatusList;
    }
311
}