package com.iailab.module.any.dao;
|
|
import com.iailab.framework.common.dao.BaseDao;
|
import com.iailab.module.any.entity.AnyProcReportDetEntity;
|
import org.apache.ibatis.annotations.Mapper;
|
|
import java.util.List;
|
|
/**
|
* @author PanZhibao
|
* @Description
|
* @createTime 2024年06月25日
|
*/
|
@Mapper
|
public interface AnyProcReportDetDao extends BaseDao<AnyProcReportDetEntity> {
|
// @DataSource("slave1")
|
void migration(List<AnyProcReportDetEntity> list);
|
}
|