package com.ruoyi.system.mapper.shop;
|
|
import com.ruoyi.system.domain.pojo.shop.ShopRelTag;
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.ruoyi.system.domain.vo.MgtShopTagVo;
|
import org.apache.ibatis.annotations.Param;
|
|
import java.util.List;
|
|
/**
|
* <p>
|
* 商户标签 Mapper 接口
|
* </p>
|
*
|
* @author jqs
|
* @since 2023-04-25
|
*/
|
public interface ShopRelTagMapper extends BaseMapper<ShopRelTag> {
|
|
/**
|
* 通过商户id删除关联
|
* @param shopId
|
*/
|
void deleteByShopId(@Param("param") Long shopId);
|
|
/**
|
* 获取商户标签
|
* @param shopId
|
* @return
|
*/
|
List<MgtShopTagVo> listShopTagVo(@Param("param")Long shopId);
|
|
}
|