|
@@ -0,0 +1,131 @@
|
|
|
|
|
+package org.dromara.system.controller;
|
|
|
|
|
+
|
|
|
|
|
+import java.util.ArrayList;
|
|
|
|
|
+import java.util.List;
|
|
|
|
|
+
|
|
|
|
|
+import lombok.RequiredArgsConstructor;
|
|
|
|
|
+import jakarta.servlet.http.HttpServletResponse;
|
|
|
|
|
+import jakarta.validation.constraints.*;
|
|
|
|
|
+import cn.dev33.satoken.annotation.SaCheckPermission;
|
|
|
|
|
+import org.dromara.util.CabinetUtil;
|
|
|
|
|
+import org.springframework.web.bind.annotation.*;
|
|
|
|
|
+import org.springframework.validation.annotation.Validated;
|
|
|
|
|
+import org.dromara.common.idempotent.annotation.RepeatSubmit;
|
|
|
|
|
+import org.dromara.common.log.annotation.Log;
|
|
|
|
|
+import org.dromara.common.web.core.BaseController;
|
|
|
|
|
+import org.dromara.common.mybatis.core.page.PageQuery;
|
|
|
|
|
+import org.dromara.common.core.domain.R;
|
|
|
|
|
+import org.dromara.common.core.validate.AddGroup;
|
|
|
|
|
+import org.dromara.common.core.validate.EditGroup;
|
|
|
|
|
+import org.dromara.common.log.enums.BusinessType;
|
|
|
|
|
+import org.dromara.common.excel.utils.ExcelUtil;
|
|
|
|
|
+import org.dromara.system.domain.vo.TblExpressStaticsVo;
|
|
|
|
|
+import org.dromara.system.domain.bo.TblExpressStaticsBo;
|
|
|
|
|
+import org.dromara.system.service.ITblExpressStaticsService;
|
|
|
|
|
+import org.dromara.common.mybatis.core.page.TableDataInfo;
|
|
|
|
|
+
|
|
|
|
|
+/**
|
|
|
|
|
+ * 【快递员数据】
|
|
|
|
|
+ *
|
|
|
|
|
+ * @author Lion Li
|
|
|
|
|
+ * @date 2025-01-06
|
|
|
|
|
+ */
|
|
|
|
|
+@Validated
|
|
|
|
|
+@RequiredArgsConstructor
|
|
|
|
|
+@RestController
|
|
|
|
|
+@RequestMapping("/system/expressStatics")
|
|
|
|
|
+public class TblExpressStaticsController extends BaseController {
|
|
|
|
|
+
|
|
|
|
|
+ private final ITblExpressStaticsService tblExpressStaticsService;
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 查询【请填写功能名称】列表
|
|
|
|
|
+ */
|
|
|
|
|
+ @SaCheckPermission("system:expressStatics:list")
|
|
|
|
|
+ @GetMapping("/list")
|
|
|
|
|
+ public TableDataInfo<TblExpressStaticsVo> list(TblExpressStaticsBo bo, PageQuery pageQuery) {
|
|
|
|
|
+ return tblExpressStaticsService.queryPageList(bo, pageQuery);
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ @SaCheckPermission("system:expressStatics:list")
|
|
|
|
|
+ @GetMapping("/setData")
|
|
|
|
|
+ public R<TblExpressStaticsBo> getData() {
|
|
|
|
|
+ try{
|
|
|
|
|
+ TblExpressStaticsBo bo = new TblExpressStaticsBo();
|
|
|
|
|
+ bo.setMonth("2024-01");
|
|
|
|
|
+ bo.setUserId(1L);
|
|
|
|
|
+ bo.setData(CabinetUtil.getExpressDeliveryStatistics("18359818885","2024-01"));
|
|
|
|
|
+ TblExpressStaticsBo query = new TblExpressStaticsBo();
|
|
|
|
|
+ query.setMonth("2024-01");
|
|
|
|
|
+ query.setUserId(1L);
|
|
|
|
|
+ List<TblExpressStaticsVo> list = tblExpressStaticsService.queryList(bo);
|
|
|
|
|
+ if(list.size() > 0){
|
|
|
|
|
+ bo.setId(list.get(0).getId());
|
|
|
|
|
+ tblExpressStaticsService.updateByBo(bo);
|
|
|
|
|
+ }else{
|
|
|
|
|
+ tblExpressStaticsService.insertByBo(bo);
|
|
|
|
|
+ }
|
|
|
|
|
+ return R.ok(bo);
|
|
|
|
|
+ }catch (Exception e){
|
|
|
|
|
+ return R.fail(e.toString());
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 导出【请填写功能名称】列表
|
|
|
|
|
+ */
|
|
|
|
|
+ @SaCheckPermission("system:expressStatics:export")
|
|
|
|
|
+ @Log(title = "【请填写功能名称】", businessType = BusinessType.EXPORT)
|
|
|
|
|
+ @PostMapping("/export")
|
|
|
|
|
+ public void export(TblExpressStaticsBo bo, HttpServletResponse response) {
|
|
|
|
|
+ List<TblExpressStaticsVo> list = tblExpressStaticsService.queryList(bo);
|
|
|
|
|
+ ExcelUtil.exportExcel(list, "【请填写功能名称】", TblExpressStaticsVo.class, response);
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 获取【请填写功能名称】详细信息
|
|
|
|
|
+ *
|
|
|
|
|
+ * @param id 主键
|
|
|
|
|
+ */
|
|
|
|
|
+ @SaCheckPermission("system:expressStatics:query")
|
|
|
|
|
+ @GetMapping("/{id}")
|
|
|
|
|
+ public R<TblExpressStaticsVo> getInfo(@NotNull(message = "主键不能为空")
|
|
|
|
|
+ @PathVariable Long id) {
|
|
|
|
|
+ return R.ok(tblExpressStaticsService.queryById(id));
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 新增【请填写功能名称】
|
|
|
|
|
+ */
|
|
|
|
|
+ @SaCheckPermission("system:expressStatics:add")
|
|
|
|
|
+ @Log(title = "【请填写功能名称】", businessType = BusinessType.INSERT)
|
|
|
|
|
+ @RepeatSubmit()
|
|
|
|
|
+ @PostMapping()
|
|
|
|
|
+ public R<Void> add(@Validated(AddGroup.class) @RequestBody TblExpressStaticsBo bo) {
|
|
|
|
|
+ return toAjax(tblExpressStaticsService.insertByBo(bo));
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 修改【请填写功能名称】
|
|
|
|
|
+ */
|
|
|
|
|
+ @SaCheckPermission("system:expressStatics:edit")
|
|
|
|
|
+ @Log(title = "【请填写功能名称】", businessType = BusinessType.UPDATE)
|
|
|
|
|
+ @RepeatSubmit()
|
|
|
|
|
+ @PutMapping()
|
|
|
|
|
+ public R<Void> edit(@Validated(EditGroup.class) @RequestBody TblExpressStaticsBo bo) {
|
|
|
|
|
+ return toAjax(tblExpressStaticsService.updateByBo(bo));
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 删除【请填写功能名称】
|
|
|
|
|
+ *
|
|
|
|
|
+ * @param ids 主键串
|
|
|
|
|
+ */
|
|
|
|
|
+ @SaCheckPermission("system:expressStatics:remove")
|
|
|
|
|
+ @Log(title = "【请填写功能名称】", businessType = BusinessType.DELETE)
|
|
|
|
|
+ @DeleteMapping("/{ids}")
|
|
|
|
|
+ public R<Void> remove(@NotEmpty(message = "主键不能为空")
|
|
|
|
|
+ @PathVariable Long[] ids) {
|
|
|
|
|
+ return toAjax(tblExpressStaticsService.deleteWithValidByIds(List.of(ids), true));
|
|
|
|
|
+ }
|
|
|
|
|
+}
|