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 6 7 8
   private String projectID;
   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 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
    }

    public String getProjectID() {
        return projectID;
    }

    public void setProjectID(String projectID) {
        this.projectID = projectID;
    }

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