GameExtMapper.java 286 B

123456789101112
  1. package com.zanxiang.mybatis.mapper;
  2. import com.baomidou.mybatisplus.core.mapper.BaseMapper;
  3. import com.zanxiang.mybatis.entity.GameExt;
  4. /**
  5. * @author : lingfeng
  6. * @time : 2022-09-23
  7. * @description : ${description}
  8. */
  9. public interface GameExtMapper extends BaseMapper<GameExt> {
  10. }