UserSysMsgNotifyMapper.java 910 B

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