You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
package com.epmet.dao;
|
|
|
|
|
|
|
|
import com.epmet.commons.mybatis.dao.BaseDao;
|
|
|
|
import com.epmet.dto.form.ConfigSwitchFormDTO;
|
|
|
|
import com.epmet.entity.DataSyncConfigEntity;
|
|
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 数据更新配置表
|
|
|
|
*
|
|
|
|
* @author generator generator@elink-cn.com
|
|
|
|
* @since v1.0.0 2022-09-26
|
|
|
|
*/
|
|
|
|
@Mapper
|
|
|
|
public interface DataSyncConfigDao extends BaseDao<DataSyncConfigEntity> {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Desc: 【数据配置】配置开关
|
|
|
|
* @param formDTO
|
|
|
|
* @author zxc
|
|
|
|
* @date 2022/9/26 14:36
|
|
|
|
*/
|
|
|
|
void configSwitch(ConfigSwitchFormDTO formDTO);
|
|
|
|
|
|
|
|
}
|