| 1234567891011121314151617181920 |
- package com.cyksj.service.user;
- import com.baomidou.mybatisplus.extension.service.IService;
- import com.cyksj.model.entity.GroupsRelation;
- import com.cyksj.model.entity.UserSysMsgNotify;
- import com.cyksj.model.manage.views.GroupsRelationView;
- import java.util.List;
- /**
- * 项目名: yhlxj2
- * 文件名: UserSysMsgNotifyService
- * 创建者: JavaZou
- * 创建时间:2024/2/4 16:03
- */
- public interface UserSysMsgNotifyService extends IService<UserSysMsgNotify> {
- void recordUserAccountUpdateSysMsg(Long goodsId, Long skuId, List<GroupsRelationView> relations, String account, String title);
- void recordUserAccountSetSysMsg(Long goodsId, Long skuId, List<GroupsRelation> groupsRelations, String account, String title);
- }
|