40 lines
1.1 KiB
Java
40 lines
1.1 KiB
Java
|
|
package com.mini.mybigscreen.biz.controller;
|
||
|
|
|
||
|
|
import cn.hutool.core.util.StrUtil;
|
||
|
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
||
|
|
import com.mini.mybigscreen.Model.Result;
|
||
|
|
import com.mini.mybigscreen.biz.domain.IndexInfo;
|
||
|
|
import com.mini.mybigscreen.biz.service.IndexInfoService;
|
||
|
|
import jakarta.annotation.Resource;
|
||
|
|
import org.springframework.web.bind.annotation.GetMapping;
|
||
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
||
|
|
import org.springframework.web.bind.annotation.RestController;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* <p>
|
||
|
|
* 首页指标数据表 前端控制器
|
||
|
|
* </p>
|
||
|
|
*
|
||
|
|
* @author gaoxq
|
||
|
|
* @since 2026-03-02
|
||
|
|
*/
|
||
|
|
@RestController
|
||
|
|
@RequestMapping("/biz/indexInfo")
|
||
|
|
public class IndexInfoController {
|
||
|
|
|
||
|
|
|
||
|
|
@Resource
|
||
|
|
private IndexInfoService infoService;
|
||
|
|
|
||
|
|
|
||
|
|
@GetMapping("list")
|
||
|
|
public Result<?> getList(String indexCode) {
|
||
|
|
QueryWrapper<IndexInfo> query = new QueryWrapper<>();
|
||
|
|
query.eq(StrUtil.isNotBlank(indexCode), "index_code", indexCode)
|
||
|
|
.orderByAsc("sort");
|
||
|
|
return Result.success(infoService.list(query));
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
}
|