| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- package com.sqx.modules.chats.service;
- import com.sqx.modules.chats.entity.Chats;
- import com.sqx.modules.chats.utils.Result;
- public interface ChatsService {
- /**
- * 商家端未读消息
- * @param storeId
- * @return
- */
- Result count(Long storeId);
- Result userCount(Long count);
- /**
- * 商家端会话列表
- * @param storeId
- * @return
- */
- Result findAll(Long storeId, String userName,Long type,String starTime,String endTime,String read);
- Result findRead(Long storeId, String userName,Long type,String starTime,String endTime);
- Result findUnRead(Long storeId, String userName,Long type,String starTime,String endTime);
- /**
- * 用户端会话列表
- * @param userId
- * @return
- */
- Result userList(Long userId);
- //查询
- Result findOne(Long id);
- //删除
- Result delete(Long id);
- //添加
- Result saveBody(Chats entity);
- //修改
- Result updateBody(Chats entity);
- }
|