Pu Zhibing
2 天以前 af6456c60aa0d3cc931d3c85f652fa7e47d003e3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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);
}