1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- package com.ruoyi.system.controller;
- import java.util.List;
- import javax.servlet.http.HttpServletResponse;
- 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.system.domain.SysXWechatOrder;
- import com.ruoyi.system.service.ISysXWechatOrderService;
- import com.ruoyi.common.utils.poi.ExcelUtil;
- import com.ruoyi.common.core.page.TableDataInfo;
- /**
- * 支付记录Controller
- *
- * @author ruoyi
- * @date 2025-07-24
- */
- @RestController
- @RequestMapping("/system/order")
- public class SysXWechatOrderController extends BaseController
- {
- @Autowired
- private ISysXWechatOrderService sysXWechatOrderService;
- /**
- * 查询支付记录列表
- */
- @GetMapping("/list")
- public TableDataInfo list(SysXWechatOrder sysXWechatOrder)
- {
- startPage();
- List<SysXWechatOrder> list = sysXWechatOrderService.selectSysXWechatOrderList(sysXWechatOrder);
- return getDataTable(list);
- }
- /**
- * 导出支付记录列表
- */
- @Log(title = "支付记录", businessType = BusinessType.EXPORT)
- @PostMapping("/export")
- public void export(HttpServletResponse response, SysXWechatOrder sysXWechatOrder)
- {
- List<SysXWechatOrder> list = sysXWechatOrderService.selectSysXWechatOrderList(sysXWechatOrder);
- ExcelUtil<SysXWechatOrder> util = new ExcelUtil<SysXWechatOrder>(SysXWechatOrder.class);
- util.exportExcel(response, list, "支付记录数据");
- }
- /**
- * 获取支付记录详细信息
- */
- @GetMapping(value = "/{id}")
- public AjaxResult getInfo(@PathVariable("id") Long id)
- {
- return success(sysXWechatOrderService.selectSysXWechatOrderById(id));
- }
- /**
- * 新增支付记录
- */
- @Log(title = "支付记录", businessType = BusinessType.INSERT)
- @PostMapping
- public AjaxResult add(@RequestBody SysXWechatOrder sysXWechatOrder)
- {
- return toAjax(sysXWechatOrderService.insertSysXWechatOrder(sysXWechatOrder));
- }
- /**
- * 修改支付记录
- */
- @Log(title = "支付记录", businessType = BusinessType.UPDATE)
- @PutMapping
- public AjaxResult edit(@RequestBody SysXWechatOrder sysXWechatOrder)
- {
- return toAjax(sysXWechatOrderService.updateSysXWechatOrder(sysXWechatOrder));
- }
- /**
- * 删除支付记录
- */
- @Log(title = "支付记录", businessType = BusinessType.DELETE)
- @DeleteMapping("/{ids}")
- public AjaxResult remove(@PathVariable Long[] ids)
- {
- return toAjax(sysXWechatOrderService.deleteSysXWechatOrderByIds(ids));
- }
- }
|