添加功能

This commit is contained in:
马宝龙
2026-06-25 16:44:47 +08:00
parent ac7e4e9088
commit 3c73be770f
15 changed files with 521 additions and 67 deletions

View File

@@ -0,0 +1,24 @@
package com.ruoyi.cms.service;
import com.ruoyi.cms.domain.dto.QueryParamDto;
import com.ruoyi.cms.domain.vo.IndustryEmploymentInfoOverviewVo;
import com.ruoyi.common.core.domain.AjaxResult;
import org.springframework.web.bind.annotation.GetMapping;
/**
* 行业就业情况信息分析
*
* @author 马宝龙
* @date 2026/6/25
*/
public interface AnalysisIndustryEmploymentInfoService {
/**
* 数据总览
*
* @param dto 查询参数
* @return 数据总览
*/
IndustryEmploymentInfoOverviewVo overview(QueryParamDto dto);
}