浏览代码

优化注释

zhangxin 2 天之前
父节点
当前提交
dac570a778

+ 1 - 1
national-motion-module-system/national-motion-system-biz/src/main/java/org/jeecg/modules/app/controller/game/GameController.java

@@ -40,7 +40,7 @@ public class GameController {
 
 
     @GetMapping("/findById")
-    @Operation(summary = "赛事详情查询缺少订单")
+    @Operation(summary = "赛事详情查询")
     public Result<FindByIdResponse> findById(@RequestParam("id") String id,@RequestParam("longitude") String longitude,@RequestParam("latitude") String latitude){
         return iGameService.findById(id,longitude,latitude);
     }

+ 1 - 1
national-motion-module-system/national-motion-system-biz/src/main/java/org/jeecg/modules/app/controller/stadium/StadiumController.java

@@ -32,7 +32,7 @@ public class StadiumController {
      * @return PlaceInfoVO {@link PlaceInfoVO}
      **/
     @GetMapping("/getPlaceInfo")
-    @Operation(summary = "场次详情查询-缺少已定状态和可预约数逻辑 ")
+    @Operation(summary = "场次详情查询")
     public Result<StadiumConcertsResponseVO> findConcerts(StadiumFindById stadiumFindById){
         return iDetailService.findConcerts(stadiumFindById.getSiteId(),stadiumFindById.getCategoryId());
     }