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

public class AddProjectResult {
neo's avatar
neo committed
4
   private String dbName;
5
   private String projectId;
6 7 8
   private Boolean result;
   private String resultMsg;

neo's avatar
neo committed
9 10
    public String getDbName() {
        return dbName;
11 12
    }

neo's avatar
neo committed
13 14
    public void setDbName(String dbName) {
        this.dbName = dbName;
15 16
    }

17 18
    public String getProjectId() {
        return projectId;
19 20
    }

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

    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;
    }
}