群消息回调保存,文件上传大小变更

This commit is contained in:
高保安
2025-12-17 20:44:42 +08:00
parent 01ea7e15fa
commit a9b1ef4f58
11 changed files with 193 additions and 49 deletions

View File

@@ -0,0 +1,19 @@
package com.realtime.service.impl;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.realtime.mappers.SmartMessageMapper;
import com.realtime.model.pojo.SmartMessage;
import com.realtime.service.SmartMessageService;
import lombok.extern.slf4j.Slf4j;
import org.springframework.stereotype.Service;
@Slf4j
@Service
public class SmartMessageServiceImpl extends ServiceImpl<SmartMessageMapper, SmartMessage>
implements SmartMessageService {
}