| 123456789101112131415161718 |
- package com.xjrsoft.module.system.mapper;
- import com.xjrsoft.module.system.entity.Authorize;
- import com.baomidou.mybatisplus.core.mapper.BaseMapper;
- import org.apache.ibatis.annotations.Mapper;
- /**
- * <p>
- * Mapper 接口
- * </p>
- *
- * @author tzx
- * @since 2022-03-16
- */
- @Mapper
- public interface AuthorizeMapper extends BaseMapper<Authorize> {
- }
|