コード例 #1
0
ファイル: CommonResponse.java プロジェクト: sukmin/nLoo
 public CommonResponse(SectionService.Result result) {
   this.code = result.getCode();
   this.message = result.getMessage();
 }
コード例 #2
0
ファイル: CommonResponse.java プロジェクト: sukmin/nLoo
 public CommonResponse(SectionService.Result result, String keyMessage) {
   this.code = result.getCode();
   this.message = result.getMessage();
   this.setKeyMessage(keyMessage);
 }