| | |
| | | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
| | | import com.example.jz.dao.MessageDao; |
| | | import com.example.jz.modle.entity.Message; |
| | | import com.example.jz.modle.vo.GroupMessageVo; |
| | | import com.example.jz.service.MessageService; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 消息表(Message)表服务实现类 |
| | |
| | | */ |
| | | @Service("messageService") |
| | | public class MessageServiceImpl extends ServiceImpl<MessageDao, Message> implements MessageService { |
| | | @Autowired |
| | | private MessageDao messageDao; |
| | | |
| | | |
| | | } |