package com.tievd.jyz.service.impl; import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; import com.tievd.jyz.entity.Label; import com.tievd.jyz.mapper.LabelMapper; import com.tievd.jyz.service.ILabelService; import org.springframework.stereotype.Service; import java.util.Arrays; import java.util.List; /** * Label * * @author cube * @version V2.0.0 * @since 2023-02-27 */ @Service public class LabelServiceImpl extends ServiceImpl implements ILabelService { @Override public List listLabel() { return baseMapper.listLabel(); } @Override public boolean save(Label label) throws RuntimeException { LambdaQueryWrapper