package com.cyksj.mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.cyksj.model.entity.GroupsRelation; import com.cyksj.model.entity.UserSysMsgNotify; import com.cyksj.model.manage.views.GroupsRelationView; import org.apache.ibatis.annotations.Param; import java.util.List; /** * 项目名: yhlxj2 * 文件名: UserSysMsgNotifyMapper * 创建者: JavaZou * 创建时间:2024/2/4 16:02 */ public interface UserSysMsgNotifyMapper extends BaseMapper { void recordUserAccountUpdateSysMsg(@Param("goodsId") Long goodsId, @Param("skuId") Long skuId, @Param("list") List relations, @Param("account") String account, @Param("msg") String msg); void recordUserAccountSetSysMsg(@Param("goodsId") Long goodsId, @Param("skuId") Long skuId, @Param("list") List collect, @Param("account") String account, @Param("msg") String msg); }