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