- package com.zanxiang.mybatis.mapper;
- import com.baomidou.mybatisplus.core.mapper.BaseMapper;
- import com.zanxiang.mybatis.entity.GamePayStrategy;
- import org.apache.ibatis.annotations.Mapper;
- /**
- * 注释游戏策略 Mapper
- *
- * @author xufeng
- * @date 2022-07-01 11:38
- */
- @Mapper
- public interface GameStrategyMapper extends BaseMapper<GamePayStrategy> {
- }
|