ProjectStatusManageDto.java 1.7 KB
Newer Older
1 2
package pwc.taxtech.atms.dto.taxadmin;

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

5 6 7
import java.util.Date;

public class ProjectStatusManageDto {
8 9 10 11 12 13 14 15
    private Date createTime;
    @JsonProperty("creatorID")
    private String creatorId;
    private String dbName;
    @JsonProperty("ID")
    private String id;
    private ProjectImportSubStatusDto importSubStatus;
    private Integer periodId;
16 17 18 19 20 21 22 23 24

    public Date getCreateTime() {
        return createTime;
    }

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

25 26
    public String getCreatorId() {
        return creatorId;
27 28
    }

29 30
    public void setCreatorId(String creatorId) {
        this.creatorId = creatorId;
31 32 33 34 35 36 37 38 39 40
    }

    public String getDbName() {
        return dbName;
    }

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

41 42
    public String getId() {
        return id;
43 44
    }

45 46
    public void setId(String id) {
        this.id = id;
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
    }

    public ProjectImportSubStatusDto getImportSubStatus() {
        return importSubStatus;
    }

    public void setImportSubStatus(ProjectImportSubStatusDto importSubStatus) {
        this.importSubStatus = importSubStatus;
    }

    public Integer getPeriodId() {
        return periodId;
    }

    public void setPeriodId(Integer periodId) {
        this.periodId = periodId;
    }

    public Integer getStatus() {
        return status;
    }

    public void setStatus(Integer status) {
        this.status = status;
    }

    public Date getUpdateTime() {
        return updateTime;
    }

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

81 82
    private Integer status;
    private Date updateTime;
83
}