mapper.java.ftl 425 B

1234567891011121314151617
  1. package ${package};
  2. import com.baomidou.mybatisplus.core.mapper.BaseMapper;
  3. import com.github.yulichang.base.MPJBaseMapper;
  4. import com.xjrsoft.module.${outputArea}.entity.${entityClass};
  5. import org.apache.ibatis.annotations.Mapper;
  6. /**
  7. * @title: ${tableComment}
  8. * @Author ${author}
  9. * @Date: ${date}
  10. * @Version 1.0
  11. */
  12. @Mapper
  13. public interface ${entityClass}Mapper extends MPJBaseMapper<${entityClass}> {
  14. }