Pu Zhibing
2025-06-19 546be8a1bafdfc804575a8d07a5d9f2306c29c42
ruoyi-modules/ruoyi-shop/src/main/java/com/ruoyi/shop/mapper/shop/ShopStaffMapper.java
@@ -2,6 +2,7 @@
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.ruoyi.shop.domain.pojo.shop.ShopStaff;
import org.apache.ibatis.annotations.Param;
/**
 * <p>
@@ -13,4 +14,19 @@
 */
public interface ShopStaffMapper extends BaseMapper<ShopStaff> {
    /**
     * 清空商户员工关联
     * @param shopId
     */
    void clearShopStaffRelation(@Param("shopId") Long shopId);
    /**
     * @description
     * @author  jqs
     * @date    2023/8/3 13:33
     * @param shopId
 * @param codeUrl
     * @return  void
     */
    void updateShopCodeUrl(@Param("shopId") Long shopId,@Param("codeUrl") String codeUrl);
}