package com.gk.hotwork.doublePrevention.repository;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.gk.hotwork.doublePrevention.entity.PreventReportConfig;
|
import com.gk.hotwork.doublePrevention.repository.param.PreventReportConfigUpdateParams;
|
import org.springframework.stereotype.Repository;
|
|
import java.util.List;
|
|
@Repository
|
public interface PreventReportConfigRepository extends BaseMapper<PreventReportConfig> {
|
|
/**
|
* 数据上报配置-查询
|
*/
|
List<PreventReportConfig> ListReportConfigs();
|
|
/**
|
* 数据上报配置-修改
|
*/
|
int updateReportConfig(PreventReportConfigUpdateParams updateParams);
|
|
}
|