Bläddra i källkod

注释userapp导出接口

lmx 2 månader sedan
förälder
incheckning
b2b764759b

+ 10 - 10
fs-user-app/src/main/java/com/fs/app/controller/LiveCartController.java

@@ -80,16 +80,16 @@ public class LiveCartController extends AppBaseController
     /**
      * 导出购物车列表
      */
-    @Log(title = "购物车", businessType = BusinessType.EXPORT)
-    @GetMapping("/export")
-    @ApiOperation("导出购物车列表")
-    @Login
-    public AjaxResult export(LiveCart liveCart)
-    {
-        List<LiveCart> list = liveCartService.selectLiveCartList(liveCart);
-        ExcelUtil<LiveCart> util = new ExcelUtil<LiveCart>(LiveCart.class);
-        return util.exportExcel(list, "购物车数据");
-    }
+//    @Log(title = "购物车", businessType = BusinessType.EXPORT)
+//    @GetMapping("/export")
+//    @ApiOperation("导出购物车列表")
+//    @Login
+//    public AjaxResult export(LiveCart liveCart)
+//    {
+//        List<LiveCart> list = liveCartService.selectLiveCartList(liveCart);
+//        ExcelUtil<LiveCart> util = new ExcelUtil<LiveCart>(LiveCart.class);
+//        return util.exportExcel(list, "购物车数据");
+//    }
 
     /**
      * 获取购物车详细信息

+ 8 - 8
fs-user-app/src/main/java/com/fs/app/controller/LiveGoodsController.java

@@ -81,14 +81,14 @@ public class LiveGoodsController extends AppBaseController
     /**
      * 导出直播商品列表
      */
-    @Log(title = "直播商品", businessType = BusinessType.EXPORT)
-    @GetMapping("/export")
-    public AjaxResult export(LiveGoods liveGoods)
-    {
-        List<LiveGoods> list = liveGoodsService.selectLiveGoodsList(liveGoods);
-        ExcelUtil<LiveGoods> util = new ExcelUtil<LiveGoods>(LiveGoods.class);
-        return util.exportExcel(list, "直播商品数据");
-    }
+//    @Log(title = "直播商品", businessType = BusinessType.EXPORT)
+//    @GetMapping("/export")
+//    public AjaxResult export(LiveGoods liveGoods)
+//    {
+//        List<LiveGoods> list = liveGoodsService.selectLiveGoodsList(liveGoods);
+//        ExcelUtil<LiveGoods> util = new ExcelUtil<LiveGoods>(LiveGoods.class);
+//        return util.exportExcel(list, "直播商品数据");
+//    }
 
     /**
      * 获取直播商品详细信息

+ 8 - 8
fs-user-app/src/main/java/com/fs/app/controller/LiveMsgController.java

@@ -42,14 +42,14 @@ public class LiveMsgController extends BaseController
     /**
      * 导出直播讨论列表
      */
-    @Log(title = "直播讨论", businessType = BusinessType.EXPORT)
-    @GetMapping("/export")
-    public AjaxResult export(LiveMsg liveMsg)
-    {
-        List<LiveMsg> list = liveMsgService.selectLiveMsgList(liveMsg);
-        ExcelUtil<LiveMsg> util = new ExcelUtil<LiveMsg>(LiveMsg.class);
-        return util.exportExcel(list, "直播讨论数据");
-    }
+//    @Log(title = "直播讨论", businessType = BusinessType.EXPORT)
+//    @GetMapping("/export")
+//    public AjaxResult export(LiveMsg liveMsg)
+//    {
+//        List<LiveMsg> list = liveMsgService.selectLiveMsgList(liveMsg);
+//        ExcelUtil<LiveMsg> util = new ExcelUtil<LiveMsg>(LiveMsg.class);
+//        return util.exportExcel(list, "直播讨论数据");
+//    }
 
 
 

+ 10 - 10
fs-user-app/src/main/java/com/fs/app/controller/LiveOrderController.java

@@ -144,16 +144,16 @@ public class LiveOrderController extends AppBaseController
     /**
      * 导出订单列表
      */
-    @Log(title = "订单", businessType = BusinessType.EXPORT)
-    @GetMapping("/export")
-    public AjaxResult export(LiveOrderQueryVO liveOrder)
-    {
-        log.info("订单导出 参数: {}", JSON.toJSONString(liveOrder));
-
-        List<LiveOrder> list = liveOrderService.selectLiveOrderListExport(liveOrder);
-        ExcelUtil<LiveOrder> util = new ExcelUtil<LiveOrder>(LiveOrder.class);
-        return util.exportExcel(list, "订单数据");
-    }
+//    @Log(title = "订单", businessType = BusinessType.EXPORT)
+//    @GetMapping("/export")
+//    public AjaxResult export(LiveOrderQueryVO liveOrder)
+//    {
+//        log.info("订单导出 参数: {}", JSON.toJSONString(liveOrder));
+//
+//        List<LiveOrder> list = liveOrderService.selectLiveOrderListExport(liveOrder);
+//        ExcelUtil<LiveOrder> util = new ExcelUtil<LiveOrder>(LiveOrder.class);
+//        return util.exportExcel(list, "订单数据");
+//    }
 
     /**
      * 获取订单详细信息

+ 8 - 8
fs-user-app/src/main/java/com/fs/app/controller/LiveOrderLogsController.java

@@ -40,14 +40,14 @@ public class LiveOrderLogsController extends BaseController
     /**
      * 导出订单操作记录列表
      */
-    @Log(title = "订单操作记录", businessType = BusinessType.EXPORT)
-    @GetMapping("/export")
-    public AjaxResult export(LiveOrderLogs liveOrderLogs)
-    {
-        List<LiveOrderLogs> list = liveOrderLogsService.selectLiveOrderLogsList(liveOrderLogs);
-        ExcelUtil<LiveOrderLogs> util = new ExcelUtil<LiveOrderLogs>(LiveOrderLogs.class);
-        return util.exportExcel(list, "订单操作记录数据");
-    }
+//    @Log(title = "订单操作记录", businessType = BusinessType.EXPORT)
+//    @GetMapping("/export")
+//    public AjaxResult export(LiveOrderLogs liveOrderLogs)
+//    {
+//        List<LiveOrderLogs> list = liveOrderLogsService.selectLiveOrderLogsList(liveOrderLogs);
+//        ExcelUtil<LiveOrderLogs> util = new ExcelUtil<LiveOrderLogs>(LiveOrderLogs.class);
+//        return util.exportExcel(list, "订单操作记录数据");
+//    }
 
     /**
      * 获取订单操作记录详细信息

+ 8 - 8
fs-user-app/src/main/java/com/fs/app/controller/LiveOrderPaymentController.java

@@ -40,14 +40,14 @@ public class LiveOrderPaymentController extends BaseController
     /**
      * 导出支付明细列表
      */
-    @Log(title = "支付明细", businessType = BusinessType.EXPORT)
-    @GetMapping("/export")
-    public AjaxResult export(LiveOrderPayment liveOrderPayment)
-    {
-        List<LiveOrderPayment> list = liveOrderPaymentService.selectLiveOrderPaymentList(liveOrderPayment);
-        ExcelUtil<LiveOrderPayment> util = new ExcelUtil<LiveOrderPayment>(LiveOrderPayment.class);
-        return util.exportExcel(list, "支付明细数据");
-    }
+//    @Log(title = "支付明细", businessType = BusinessType.EXPORT)
+//    @GetMapping("/export")
+//    public AjaxResult export(LiveOrderPayment liveOrderPayment)
+//    {
+//        List<LiveOrderPayment> list = liveOrderPaymentService.selectLiveOrderPaymentList(liveOrderPayment);
+//        ExcelUtil<LiveOrderPayment> util = new ExcelUtil<LiveOrderPayment>(LiveOrderPayment.class);
+//        return util.exportExcel(list, "支付明细数据");
+//    }
 
     /**
      * 获取支付明细详细信息

+ 8 - 8
fs-user-app/src/main/java/com/fs/app/controller/LiveUserFavoriteController.java

@@ -40,14 +40,14 @@ public class LiveUserFavoriteController extends BaseController
     /**
      * 导出用户直播收藏列表
      */
-    @Log(title = "用户直播收藏", businessType = BusinessType.EXPORT)
-    @GetMapping("/export")
-    public AjaxResult export(LiveUserFavorite liveUserFavorite)
-    {
-        List<LiveUserFavorite> list = liveUserFavoriteService.selectLiveUserFavoriteList(liveUserFavorite);
-        ExcelUtil<LiveUserFavorite> util = new ExcelUtil<LiveUserFavorite>(LiveUserFavorite.class);
-        return util.exportExcel(list, "用户直播收藏数据");
-    }
+//    @Log(title = "用户直播收藏", businessType = BusinessType.EXPORT)
+//    @GetMapping("/export")
+//    public AjaxResult export(LiveUserFavorite liveUserFavorite)
+//    {
+//        List<LiveUserFavorite> list = liveUserFavoriteService.selectLiveUserFavoriteList(liveUserFavorite);
+//        ExcelUtil<LiveUserFavorite> util = new ExcelUtil<LiveUserFavorite>(LiveUserFavorite.class);
+//        return util.exportExcel(list, "用户直播收藏数据");
+//    }
 
     /**
      * 获取用户直播收藏详细信息

+ 11 - 11
fs-user-app/src/main/java/com/fs/app/controller/LiveUserFollowController.java

@@ -37,17 +37,17 @@ public class LiveUserFollowController extends BaseController
         return getDataTable(list);
     }
 
-    /**
-     * 导出用户直播关注列表
-     */
-    @Log(title = "用户直播关注", businessType = BusinessType.EXPORT)
-    @GetMapping("/export")
-    public AjaxResult export(LiveUserFollow liveUserFollow)
-    {
-        List<LiveUserFollow> list = liveUserFollowService.selectLiveUserFollowList(liveUserFollow);
-        ExcelUtil<LiveUserFollow> util = new ExcelUtil<LiveUserFollow>(LiveUserFollow.class);
-        return util.exportExcel(list, "用户直播关注数据");
-    }
+//    /**
+//     * 导出用户直播关注列表
+//     */
+//    @Log(title = "用户直播关注", businessType = BusinessType.EXPORT)
+//    @GetMapping("/export")
+//    public AjaxResult export(LiveUserFollow liveUserFollow)
+//    {
+//        List<LiveUserFollow> list = liveUserFollowService.selectLiveUserFollowList(liveUserFollow);
+//        ExcelUtil<LiveUserFollow> util = new ExcelUtil<LiveUserFollow>(LiveUserFollow.class);
+//        return util.exportExcel(list, "用户直播关注数据");
+//    }
 
     /**
      * 获取用户直播关注详细信息

+ 8 - 8
fs-user-app/src/main/java/com/fs/app/controller/LiveUserLikeController.java

@@ -40,14 +40,14 @@ public class LiveUserLikeController extends BaseController
     /**
      * 导出用户直播赞列表
      */
-    @Log(title = "用户直播赞", businessType = BusinessType.EXPORT)
-    @GetMapping("/export")
-    public AjaxResult export(LiveUserLike liveUserLike)
-    {
-        List<LiveUserLike> list = liveUserLikeService.selectLiveUserLikeList(liveUserLike);
-        ExcelUtil<LiveUserLike> util = new ExcelUtil<LiveUserLike>(LiveUserLike.class);
-        return util.exportExcel(list, "用户直播赞数据");
-    }
+//    @Log(title = "用户直播赞", businessType = BusinessType.EXPORT)
+//    @GetMapping("/export")
+//    public AjaxResult export(LiveUserLike liveUserLike)
+//    {
+//        List<LiveUserLike> list = liveUserLikeService.selectLiveUserLikeList(liveUserLike);
+//        ExcelUtil<LiveUserLike> util = new ExcelUtil<LiveUserLike>(LiveUserLike.class);
+//        return util.exportExcel(list, "用户直播赞数据");
+//    }
 
     /**
      * 获取用户直播赞详细信息