kongzy
2024-09-23 d015cc0b48ca51a2b93b6c60c91dc352a104b1e7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.gkhy.safePlatform.targetDuty.repository;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.gkhy.safePlatform.targetDuty.entity.ExamineTemplate;
import org.springframework.stereotype.Repository;
 
/**
 * 绩效考核标准(ExamineTemplate)表数据库访问层
 *
 * @author xurui
 * @since 2022-07-21 10:58:10
 */
@Repository
public interface ExamineTemplateRepository extends BaseMapper<ExamineTemplate> {
 
}