package com.gkhy.safePlatform.targetDuty.repository;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.gkhy.safePlatform.targetDuty.entity.TargetDutySummary;
|
import org.springframework.stereotype.Repository;
|
|
/**
|
* (TargetDutySummary)表数据库访问层
|
*
|
* @author xurui
|
* @since 2022-07-21 15:35:14
|
*/
|
@Repository
|
public interface TargetDutySummaryRepository extends BaseMapper<TargetDutySummary> {
|
|
}
|