ProjectClientDto.java 1.46 KB
Newer Older
eddie.woo's avatar
eddie.woo committed
1 2
package pwc.taxtech.atms.dto;

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

eddie.woo's avatar
eddie.woo committed
5 6
import java.util.Date;

7 8 9
/**
 * @see PwC.Tax.Tech.Atms.Application.Dto\TaxAdminDto\ProjectClientDto.cs
 */
eddie.woo's avatar
eddie.woo committed
10
public class ProjectClientDto {
11
    @JsonProperty("ID")
12
    private String id;
eddie.woo's avatar
eddie.woo committed
13 14
    private String code;
    private String name;
15
    @JsonProperty("industryID")
16
    private String industryId;
eddie.woo's avatar
eddie.woo committed
17 18 19 20
    private Boolean isActive;
    private Date createTime;
    private Date updateTime;

21 22
    public String getId() {
        return id;
eddie.woo's avatar
eddie.woo committed
23 24
    }

25
    public void setId(String id) {
frank.xa.zhang's avatar
frank.xa.zhang committed
26
        this.id = id;
eddie.woo's avatar
eddie.woo committed
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
    }

    public String getCode() {
        return code;
    }

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

    public String getName() {
        return name;
    }

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

45 46
    public String getIndustryId() {
        return industryId;
eddie.woo's avatar
eddie.woo committed
47 48
    }

49 50
    public void setIndustryId(String industryId) {
        this.industryId = industryId;
eddie.woo's avatar
eddie.woo committed
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
    }

    public Boolean getIsActive() {
        return isActive;
    }

    public void setIsActive(Boolean isActive) {
        this.isActive = isActive;
    }

    public Date getCreateTime() {
        return createTime;
    }

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

    public Date getUpdateTime() {
        return updateTime;
    }

    public void setUpdateTime(Date updateTime) {
        this.updateTime = updateTime;
    }

}