Browse Source

添加返回值泛型

luyanwen-001 3 years ago
parent
commit
bb044999df

+ 1 - 1
abi-cloud-qr-platform-server/src/main/java/com/abi/qms/platform/controller/wx/WxBreweryProductionLineController.java

@@ -63,7 +63,7 @@ public class WxBreweryProductionLineController {
      */
     @ApiOperation("查询当前登陆人的产线列表")
     @GetMapping("/queryListBreweryProductionLine")
-    public BaseResponse queryListBreweryProductionLine(@Validated QueryListBreweryProductionLineReq req) {
+    public BaseResponse<QueryListBreweryProductionLineRes> queryListBreweryProductionLine(@Validated QueryListBreweryProductionLineReq req) {
         QueryListBreweryProductionLineRes res = breweryProductionLineService.queryListBreweryProductionLine(req);
         return BaseResponse.create(res);
     }