Skip to content
  • This project
    • Loading...
  • Sign in

向汉 / uc-consumer

Go to a project
Toggle navigation
Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • member-engine
  • ..
  • service
  • RightsService.java
  • xianghan's avatar
    1.优化 · 837abe1b
    837abe1b Browse Files
    xianghan authored 2022-03-22 17:19:44 +0800
RightsService.java 432 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
package com.topdraw.business.module.rights.service;

import com.topdraw.business.module.rights.service.dto.RightsDTO;

/**
 * @author XiangHan
 * @date 2021-10-22
 */
public interface RightsService {

    /**
     * 根据ID查询
     * @param id ID
     * @return RightsDTO
     */
    RightsDTO findById(Long id);

    /**
    * Code校验
    * @param code
    * @return RightsDTO
    */
    RightsDTO getByCode(String code);
}