LabelDictServiceImpl.java 611 Bytes
package com.meishu.service.impl;

import com.meishu.model.LabelDictDO;
import com.meishu.mapper.LabelDictMapper;
import com.meishu.service.LabelDictService;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import org.springframework.stereotype.Service;

import java.util.List;

/**
 * <p>
 * 标签表 服务实现类
 * </p>
 *
 * @author Tuyp
 * @since 2023-07-11
 */
@Service
public class LabelDictServiceImpl extends ServiceImpl<LabelDictMapper, LabelDictDO> implements LabelDictService {

    public List<LabelDictDO> labels() {
        return this.baseMapper.selectList(null);
    }

}