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