GameStrategyMapper.java 360 B

123456789101112131415
  1. package com.zanxiang.mybatis.mapper;
  2. import com.baomidou.mybatisplus.core.mapper.BaseMapper;
  3. import com.zanxiang.mybatis.entity.GamePayStrategy;
  4. import org.apache.ibatis.annotations.Mapper;
  5. /**
  6. * 注释游戏策略 Mapper
  7. *
  8. * @author xufeng
  9. * @date 2022-07-01 11:38
  10. */
  11. @Mapper
  12. public interface GameStrategyMapper extends BaseMapper<GamePayStrategy> {
  13. }