package com.gkhy.safePlatform.targetDuty.repository;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.gkhy.safePlatform.targetDuty.entity.ExamineMng;
|
import org.springframework.stereotype.Repository;
|
|
/**
|
* 安全考核管理(ExamineMng)表数据库访问层
|
*
|
* @author xurui
|
* @since 2022-07-21 13:43:08
|
*/
|
@Repository
|
public interface ExamineMngRepository extends BaseMapper<ExamineMng> {
|
|
}
|