MultiChildMapper.java 328 B

12345678910111213
  1. package com.xjrsoft.module.demo.mapper;
  2. import com.github.yulichang.base.MPJBaseMapper;
  3. import com.xjrsoft.module.demo.entity.MultiChild;
  4. import org.apache.ibatis.annotations.Mapper;
  5. /**
  6. * @Author: tzx
  7. * @Date: 2022/4/26 15:24
  8. */
  9. @Mapper
  10. public interface MultiChildMapper extends MPJBaseMapper<MultiChild> {
  11. }