package com.ruoyi.mall.controller; import java.util.List; import org.springframework.security.access.prepost.PreAuthorize; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.PutMapping; import org.springframework.web.bind.annotation.DeleteMapping; import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web.bind.annotation.RequestBody; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; import com.ruoyi.common.annotation.Log; import com.ruoyi.common.core.controller.BaseController; import com.ruoyi.common.core.domain.AjaxResult; import com.ruoyi.common.enums.BusinessType; import com.ruoyi.mall.domain.MallPayLog; import com.ruoyi.mall.service.IMallPayLogService; import com.ruoyi.common.utils.poi.ExcelUtil; import com.ruoyi.common.core.page.TableDataInfo; /** * 支付记录Controller * * @author ruoyi * @date 2021-11-25 */ @RestController @RequestMapping("/mall/mallPayLog") public class MallPayLogController extends BaseController { @Autowired private IMallPayLogService mallPayLogService; /** * 查询支付记录列表 */ @PreAuthorize("@ss.hasPermi('mall:mallPayLog:list')") @GetMapping("/list") public TableDataInfo list(MallPayLog mallPayLog) { startPage(); List list = mallPayLogService.selectMallPayLogList(mallPayLog); return getDataTable(list); } /** * 导出支付记录列表 */ @PreAuthorize("@ss.hasPermi('mall:mallPayLog:export')") @Log(title = "支付记录", businessType = BusinessType.EXPORT) @GetMapping("/export") public AjaxResult export(MallPayLog mallPayLog) { List list = mallPayLogService.selectMallPayLogList(mallPayLog); ExcelUtil util = new ExcelUtil(MallPayLog.class); return util.exportExcel(list, "支付记录数据"); } /** * 获取支付记录详细信息 */ @PreAuthorize("@ss.hasPermi('mall:mallPayLog:query')") @GetMapping(value = "/{id}") public AjaxResult getInfo(@PathVariable("id") String id) { return AjaxResult.success(mallPayLogService.selectMallPayLogById(id)); } /** * 新增支付记录 */ @PreAuthorize("@ss.hasPermi('mall:mallPayLog:add')") @Log(title = "支付记录", businessType = BusinessType.INSERT) @PostMapping public AjaxResult add(@RequestBody MallPayLog mallPayLog) { return toAjax(mallPayLogService.insertMallPayLog(mallPayLog)); } /** * 修改支付记录 */ @PreAuthorize("@ss.hasPermi('mall:mallPayLog:edit')") @Log(title = "支付记录", businessType = BusinessType.UPDATE) @PutMapping public AjaxResult edit(@RequestBody MallPayLog mallPayLog) { return toAjax(mallPayLogService.updateMallPayLog(mallPayLog)); } /** * 删除支付记录 */ @PreAuthorize("@ss.hasPermi('mall:mallPayLog:remove')") @Log(title = "支付记录", businessType = BusinessType.DELETE) @DeleteMapping("/{ids}") public AjaxResult remove(@PathVariable String[] ids) { return toAjax(mallPayLogService.deleteMallPayLogByIds(ids)); } }