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