Commit ea36bd7f by 徐高华

批量修改活码

parent 7e8202a3
......@@ -280,10 +280,10 @@ public class HmQrcodeController {
qdto.setEnterpriseId(loginUser.getEnterpriseId());
ServiceResponse<List<HmBatchModifyResultDTO>> resp = this.hmQrcodeApiService.batchModify(qdto) ;
if(resp.isSuccess()) {
if(null == resp.getResult()) {
return RestResponse.successResult(resp.getMessage()) ;
}
return RestResponse.successResult(resp.getResult()) ;
RestResponse successResult = RestResponse.successResult() ;
successResult.setMessage(resp.getMessage());
successResult.setResult(resp.getResult());
return successResult ;
}
return RestResponse.failure("9999", resp.getMessage()) ;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment