songhuangfeng123
2022-09-19 ab2b3291cb9e21885ed878d60f5afd6640d830f3
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.TargetDutyfileInfo;
import org.springframework.stereotype.Repository;
 
/**
 * 目标责任书(TargetDutyfileInfo)表数据库访问层
 *
 * @author xurui
 * @since 2022-07-21 10:07:54
 */
@Repository
public interface TargetDutyfileInfoRepository extends BaseMapper<TargetDutyfileInfo> {
 
}