青羊经侦大队-数据平台
安瑾然
2022-07-11 786706ca6848e48b7d16b2237a4ad06cd7d01014
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.example.jz.service.impl;
 
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.service.MessageService;
import org.springframework.stereotype.Service;
 
/**
 * 消息表(Message)表服务实现类
 *
 * @author makejava
 * @since 2022-07-11 16:35:57
 */
@Service("messageService")
public class MessageServiceImpl extends ServiceImpl<MessageDao, Message> implements MessageService {
 
}