BUG
jiangqs
2023-04-24 aa2eae024f8f251c8e2b9eace5351dea7e315ed7
hrt-modules/hrt-system/src/main/java/com/hrt/system/mapper/shop/ShopRelTagMapper.java
@@ -2,6 +2,10 @@
import com.hrt.system.domain.poji.shop.ShopRelTag;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.hrt.system.domain.vo.MgtShopTagVo;
import org.apache.ibatis.annotations.Param;
import java.util.List;
/**
 * <p>
@@ -13,4 +17,17 @@
 */
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);
}