Blame view

PermissionsDictMapper.java 361 Bytes
涂亚平 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
package com.laowu.mapper;

import com.laowu.model.PermissionsDictDO;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.springframework.stereotype.Repository;

/**
 * <p>
 * 权限表 Mapper 接口
 * </p>
 *
 * @author Tuyp
 * @since 2023-02-20
 */
 @Repository
public interface PermissionsDictMapper extends BaseMapper<PermissionsDictDO> {

}