package com.ruoyi.system.service.impl; import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; import com.ruoyi.system.mapper.TbMessageMapper; import com.ruoyi.system.model.TbMessage; import com.ruoyi.system.service.TbMessageService; import org.springframework.stereotype.Service; /** *

* 消息表 服务实现类 *

* * @author administrator * @since 2025-05-26 */ @Service public class TbMessageServiceImpl extends ServiceImpl implements TbMessageService { @Override public void addMessage(String text, String userId,String orderId,int type) { TbMessage tbMessage = new TbMessage(); tbMessage.setMessage(text); tbMessage.setUserId(userId); tbMessage.setOrderId(orderId); tbMessage.setType(2); this.save(tbMessage); } }