-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
many sources are added and modified for testing
- Loading branch information
Showing
33 changed files
with
1,487 additions
and
248 deletions.
There are no files selected for viewing
20 changes: 20 additions & 0 deletions
20
src/main/java/com/pineone/icbms/sda/comm/dto/ResponseMessageErr.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
package com.pineone.icbms.sda.comm.dto; | ||
|
||
public class ResponseMessageErr { | ||
|
||
String content; | ||
|
||
public String getContent() { | ||
return content; | ||
} | ||
|
||
public void setContent(String content) { | ||
this.content = content; | ||
} | ||
|
||
@Override | ||
public String toString() { | ||
return "ResponseMessageErr [content=" + content + "]"; | ||
} | ||
|
||
} |
25 changes: 25 additions & 0 deletions
25
src/main/java/com/pineone/icbms/sda/comm/dto/ResponseMessageOk.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
package com.pineone.icbms.sda.comm.dto; | ||
|
||
import java.util.List; | ||
import java.util.Map; | ||
|
||
public class ResponseMessageOk { | ||
|
||
List<Map<String, String>> content; | ||
|
||
public List<Map<String, String>> getContent() { | ||
return content; | ||
} | ||
|
||
public void setContent(List<Map<String, String>> content) { | ||
this.content = content; | ||
} | ||
|
||
@Override | ||
public String toString() { | ||
return "ResponseMessageOk [content=" + content + "]"; | ||
} | ||
|
||
|
||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
39 changes: 39 additions & 0 deletions
39
src/main/java/com/pineone/icbms/sda/kb/dto/SurveyInfoDTO.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
package com.pineone.icbms.sda.kb.dto; | ||
|
||
public class SurveyInfoDTO { | ||
String val; | ||
String class_code; | ||
String user_id; | ||
String zone; | ||
|
||
public String getZone() { | ||
return zone; | ||
} | ||
public void setZone(String zone) { | ||
this.zone = zone; | ||
} | ||
public String getVal() { | ||
return val; | ||
} | ||
public void setVal(String val) { | ||
this.val = val; | ||
} | ||
public String getClass_code() { | ||
return class_code; | ||
} | ||
public void setClass_code(String class_code) { | ||
this.class_code = class_code; | ||
} | ||
public String getUser_id() { | ||
return user_id; | ||
} | ||
public void setUser_id(String user_id) { | ||
this.user_id = user_id; | ||
} | ||
|
||
public String toString(){ | ||
return | ||
this.val+" : "+this.class_code+" : "+this.user_id+this.zone; | ||
} | ||
|
||
} |
Oops, something went wrong.