package com.ruoyi.shop.mapper.shop;
|
|
import com.ruoyi.shop.domain.pojo.shop.ShopRelUser;
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import org.apache.ibatis.annotations.Param;
|
|
import java.util.List;
|
|
/**
|
* <p>
|
* 商户关联员工 Mapper 接口
|
* </p>
|
*
|
* @author jqs
|
* @since 2023-04-25
|
*/
|
public interface ShopRelUserMapper extends BaseMapper<ShopRelUser> {
|
|
/**
|
* 通过商户id删除关联
|
* @param shopId
|
*/
|
void deleteByShopId(Long shopId);
|
|
void setDefaultCloseByUserIdList(@Param("list") List<Long> openIdList);
|
}
|