| 123456789101112131415161718192021 |
- 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<UserSysMsgNotify> {
- void recordUserAccountUpdateSysMsg(@Param("goodsId") Long goodsId, @Param("skuId") Long skuId, @Param("list") List<GroupsRelationView> relations, @Param("account") String account, @Param("msg") String msg);
- void recordUserAccountSetSysMsg(@Param("goodsId") Long goodsId, @Param("skuId") Long skuId, @Param("list") List<GroupsRelation> collect, @Param("account") String account, @Param("msg") String msg);
- }
|