liujie
4 小时以前 281c6016ab0ea5b2eeecb9167d9ee690b6fdac1f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package com.ruoyi.system.service;
 
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.ruoyi.system.model.TbMessage;
 
/**
 * <p>
 * 消息表 服务类
 * </p>
 *
 * @author administrator
 * @since 2025-05-26
 */
public interface TbMessageService extends IService<TbMessage> {
 
    /**
     * 添加消息
     * @param text 内容
     * @param userId 用户id
     */
    void addMessage(String text, String userId,String orderId);
 
 
}