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