添加功能
This commit is contained in:
@@ -0,0 +1,64 @@
|
||||
package com.ruoyi.cms.mapper;
|
||||
|
||||
import com.ruoyi.cms.domain.ModelSupplyMonitorTotalFertilityRate;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 劳动力供给总和生育率
|
||||
*
|
||||
* @author 马宝龙
|
||||
* @date 2026/7/3
|
||||
*/
|
||||
public interface ModelSupplyMonitorTotalFertilityRateMapper {
|
||||
|
||||
/**
|
||||
* 新增
|
||||
*
|
||||
* @param modelSupplyMonitorTotalFertilityRate 劳动力供给总和生育率
|
||||
*/
|
||||
void insert(ModelSupplyMonitorTotalFertilityRate modelSupplyMonitorTotalFertilityRate);
|
||||
|
||||
/**
|
||||
* 修改
|
||||
*
|
||||
* @param modelSupplyMonitorTotalFertilityRate 劳动力供给总和生育率
|
||||
*/
|
||||
void update(ModelSupplyMonitorTotalFertilityRate modelSupplyMonitorTotalFertilityRate);
|
||||
|
||||
/**
|
||||
* 通过ID删除
|
||||
*
|
||||
* @param id ID
|
||||
*/
|
||||
void deleteById(Long id);
|
||||
|
||||
/**
|
||||
* 清空
|
||||
*/
|
||||
void clear();
|
||||
|
||||
/**
|
||||
* 通过ID查询
|
||||
*
|
||||
* @param id ID
|
||||
* @return 劳动力供给总和生育率
|
||||
*/
|
||||
ModelSupplyMonitorTotalFertilityRate selectById(Long id);
|
||||
|
||||
/**
|
||||
* 查询唯一(按年份)
|
||||
*
|
||||
* @param modelSupplyMonitorTotalFertilityRate 劳动力供给总和生育率
|
||||
* @return 劳动力供给总和生育率
|
||||
*/
|
||||
ModelSupplyMonitorTotalFertilityRate findUnique(ModelSupplyMonitorTotalFertilityRate modelSupplyMonitorTotalFertilityRate);
|
||||
|
||||
/**
|
||||
* 查询列表
|
||||
*
|
||||
* @param modelSupplyMonitorTotalFertilityRate 劳动力供给总和生育率
|
||||
* @return 列表
|
||||
*/
|
||||
List<ModelSupplyMonitorTotalFertilityRate> list(ModelSupplyMonitorTotalFertilityRate modelSupplyMonitorTotalFertilityRate);
|
||||
}
|
||||
Reference in New Issue
Block a user