添加功能

This commit is contained in:
马宝龙
2026-07-03 13:15:14 +08:00
parent fbf2b2da0e
commit 631c4fdc21
10 changed files with 629 additions and 1 deletions

View File

@@ -0,0 +1,64 @@
package com.ruoyi.cms.mapper;
import com.ruoyi.cms.domain.ModelSupplyMonitorIndustryPopulation;
import java.util.List;
/**
* 劳动力供给分行业劳动力人口
*
* @author 马宝龙
* @date 2026/7/3
*/
public interface ModelSupplyMonitorIndustryPopulationMapper {
/**
* 新增
*
* @param modelSupplyMonitorIndustryPopulation 劳动力供给分行业劳动力人口
*/
void insert(ModelSupplyMonitorIndustryPopulation modelSupplyMonitorIndustryPopulation);
/**
* 修改
*
* @param modelSupplyMonitorIndustryPopulation 劳动力供给分行业劳动力人口
*/
void update(ModelSupplyMonitorIndustryPopulation modelSupplyMonitorIndustryPopulation);
/**
* 通过ID删除
*
* @param id ID
*/
void deleteById(Long id);
/**
* 清空
*/
void clear();
/**
* 通过ID查询
*
* @param id ID
* @return 劳动力供给分行业劳动力人口
*/
ModelSupplyMonitorIndustryPopulation selectById(Long id);
/**
* 查询唯一(按年份+行业编号)
*
* @param modelSupplyMonitorIndustryPopulation 劳动力供给分行业劳动力人口
* @return 劳动力供给分行业劳动力人口
*/
ModelSupplyMonitorIndustryPopulation findUnique(ModelSupplyMonitorIndustryPopulation modelSupplyMonitorIndustryPopulation);
/**
* 查询列表
*
* @param modelSupplyMonitorIndustryPopulation 劳动力供给分行业劳动力人口
* @return 列表
*/
List<ModelSupplyMonitorIndustryPopulation> list(ModelSupplyMonitorIndustryPopulation modelSupplyMonitorIndustryPopulation);
}