package com.stylefeng.guns.modular.system.controller.general;
|
|
import com.baomidou.mybatisplus.mapper.EntityWrapper;
|
import com.stylefeng.guns.core.base.controller.BaseController;
|
import com.stylefeng.guns.modular.system.model.THtml;
|
import com.stylefeng.guns.modular.system.service.ITHtmlService;
|
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.stereotype.Controller;
|
import org.springframework.web.bind.annotation.RequestMapping;
|
import org.springframework.web.bind.annotation.ResponseBody;
|
|
/**
|
* 数据统计 控制器
|
*
|
* @author fengshuonan
|
* @Date 2023-03-24 10:50:08
|
*/
|
@Controller
|
@RequestMapping("/dataStatistics")
|
public class DataStatisticsController extends BaseController {
|
|
@Autowired
|
private ITHtmlService tHtmlService;
|
|
/**
|
* 代理商统计
|
*/
|
@RequestMapping(value = "/agentData")
|
@ResponseBody
|
public Object list(String condition) {
|
return tHtmlService.selectList(null);
|
}
|
|
}
|