Skip to content
  • Projects
  • Groups
  • Snippets
  • Help

涂亚平 / yunda

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Issues 0
  • Merge Requests 0
  • Pipelines
  • Wiki
  • Snippets
  • Settings
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Switch branch/tag
  • yunda
  • ..
  • service
  • LabelDictService.java
  • 涂亚平's avatar
    start · e19a91b8
    涂亚平 committed Jul 22, 2025
    e19a91b8
LabelDictService.java 339 Bytes
BlameHistoryPermalink
Edit
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
package com.meishu.service;

import com.meishu.model.LabelDictDO;
import com.baomidou.mybatisplus.extension.service.IService;

import java.util.List;

/**
 * <p>
 * 标签表 服务类
 * </p>
 *
 * @author Tuyp
 * @since 2023-07-11
 */
public interface LabelDictService extends IService<LabelDictDO> {

    List<LabelDictDO> labels();

}