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