AppFuncDesignMapper.java 370 B

123456789101112131415161718
  1. package com.xjrsoft.module.app.mapper;
  2. import com.github.yulichang.base.MPJBaseMapper;
  3. import com.xjrsoft.module.app.entity.AppFuncDesign;
  4. import org.apache.ibatis.annotations.Mapper;
  5. /**
  6. * <p>
  7. * Mapper 接口
  8. * </p>
  9. *
  10. * @author tzx
  11. * @since 2023-07-26
  12. */
  13. @Mapper
  14. public interface AppFuncDesignMapper extends MPJBaseMapper<AppFuncDesign> {
  15. }