123456789101112131415161718 |
- package com.ruoyi.app.service.impl;
- import org.springframework.stereotype.Service;
- import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
- import com.ruoyi.app.mapper.TbPublishCommentMapper;
- import com.ruoyi.app.domain.TbPublishComment;
- import com.ruoyi.app.service.ITbPublishCommentService;
- /**
- * 我的近况评论
- *
- * @author Administrator
- * @date 2020-10-03
- */
- @Service
- public class TbPublishCommentServiceImpl extends ServiceImpl<TbPublishCommentMapper, TbPublishComment> implements ITbPublishCommentService {
- }
|