ShowLabelDictService.java 543 Bytes
package com.show.service;

import com.show.model.ShowLabelDictDO;
import com.baomidou.mybatisplus.extension.service.IService;

import java.util.List;

/**
 * <p>
 *  服务类
 * </p>
 *
 * @author Tuyp
 * @since 2025-11-25
 */
public interface ShowLabelDictService extends IService<ShowLabelDictDO> {

    String addLabel(ShowLabelDictDO showLabelDictDO);

    List<ShowLabelDictDO> labels(ShowLabelDictDO showLabelDictDO);

    String deleteLabel(ShowLabelDictDO showLabelDictDO);

    String updateLabel(ShowLabelDictDO showLabelDictDO);
}