AddProjectResult.java 881 Bytes
Newer Older
1 2
package pwc.taxtech.atms.dto.taxadmin;

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

5
public class AddProjectResult {
6 7 8 9 10
    private String dbName;
    @JsonProperty("projectID")
    private String projectId;
    private Boolean result;
    private String resultMsg;
11

neo's avatar
neo committed
12 13
    public String getDbName() {
        return dbName;
14 15
    }

neo's avatar
neo committed
16 17
    public void setDbName(String dbName) {
        this.dbName = dbName;
18 19
    }

20 21
    public String getProjectId() {
        return projectId;
22 23
    }

24 25
    public void setProjectId(String projectId) {
        this.projectId = projectId;
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
    }

    public Boolean getResult() {
        return result;
    }

    public void setResult(Boolean result) {
        this.result = result;
    }

    public String getResultMsg() {
        return resultMsg;
    }

    public void setResultMsg(String resultMsg) {
        this.resultMsg = resultMsg;
    }
}