添加功能

This commit is contained in:
马宝龙
2026-07-03 12:00:08 +08:00
parent b68322620b
commit bc7de4224c
12 changed files with 633 additions and 5 deletions

View File

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