package com.gkhy.safePlatform.targetDuty.repository;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.gkhy.safePlatform.targetDuty.entity.ExamineItem;
|
import org.springframework.stereotype.Repository;
|
|
/**
|
* 绩效考核项目(ExamineItem)表数据库访问层
|
*
|
* @author xurui
|
* @since 2022-07-21 11:01:38
|
*/
|
@Repository
|
public interface ExamineItemRepository extends BaseMapper<ExamineItem> {
|
|
}
|