MessageHistoryServiceImpl.java 557 Bytes
package cn.fw.hestia.service.data.impl;

import cn.fw.hestia.dao.MessageHistoryDao;
import cn.fw.hestia.domain.db.MessageHistory;
import cn.fw.hestia.service.data.MessageHistoryService;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import org.springframework.stereotype.Service;

/**
 * @author : kurisu
 * @className : MessageHistoryServiceImpl
 * @description :
 * @date: 2021-09-23 15:41
 */
@Service
public class MessageHistoryServiceImpl extends ServiceImpl<MessageHistoryDao, MessageHistory> implements MessageHistoryService {
}