添加功能
This commit is contained in:
@@ -0,0 +1,64 @@
|
||||
package com.ruoyi.cms.mapper;
|
||||
|
||||
import com.ruoyi.cms.domain.ModelDemandMonitorIndustryTrend;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 劳动力需求分行业需求趋势分析
|
||||
*
|
||||
* @author 马宝龙
|
||||
* @date 2026/7/3
|
||||
*/
|
||||
public interface ModelDemandMonitorIndustryTrendMapper {
|
||||
|
||||
/**
|
||||
* 新增
|
||||
*
|
||||
* @param modelDemandMonitorIndustryTrend 劳动力需求分行业需求趋势分析
|
||||
*/
|
||||
void insert(ModelDemandMonitorIndustryTrend modelDemandMonitorIndustryTrend);
|
||||
|
||||
/**
|
||||
* 修改
|
||||
*
|
||||
* @param modelDemandMonitorIndustryTrend 劳动力需求分行业需求趋势分析
|
||||
*/
|
||||
void update(ModelDemandMonitorIndustryTrend modelDemandMonitorIndustryTrend);
|
||||
|
||||
/**
|
||||
* 通过ID删除
|
||||
*
|
||||
* @param id ID
|
||||
*/
|
||||
void deleteById(Long id);
|
||||
|
||||
/**
|
||||
* 清空
|
||||
*/
|
||||
void clear();
|
||||
|
||||
/**
|
||||
* 通过ID查询
|
||||
*
|
||||
* @param id ID
|
||||
* @return 劳动力需求分行业需求趋势分析
|
||||
*/
|
||||
ModelDemandMonitorIndustryTrend selectById(Long id);
|
||||
|
||||
/**
|
||||
* 查询唯一(按年月+行业编号)
|
||||
*
|
||||
* @param modelDemandMonitorIndustryTrend 劳动力需求分行业需求趋势分析
|
||||
* @return 劳动力需求分行业需求趋势分析
|
||||
*/
|
||||
ModelDemandMonitorIndustryTrend findUnique(ModelDemandMonitorIndustryTrend modelDemandMonitorIndustryTrend);
|
||||
|
||||
/**
|
||||
* 查询列表
|
||||
*
|
||||
* @param modelDemandMonitorIndustryTrend 劳动力需求分行业需求趋势分析
|
||||
* @return 列表
|
||||
*/
|
||||
List<ModelDemandMonitorIndustryTrend> list(ModelDemandMonitorIndustryTrend modelDemandMonitorIndustryTrend);
|
||||
}
|
||||
Reference in New Issue
Block a user