Example #1
0
 public CommonResponse(SectionService.Result result) {
   this.code = result.getCode();
   this.message = result.getMessage();
 }
Example #2
0
 public CommonResponse(SectionService.Result result, String keyMessage) {
   this.code = result.getCode();
   this.message = result.getMessage();
   this.setKeyMessage(keyMessage);
 }