TbPublishCommentServiceImpl.java 537 B

123456789101112131415161718
  1. package com.ruoyi.app.service.impl;
  2. import org.springframework.stereotype.Service;
  3. import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
  4. import com.ruoyi.app.mapper.TbPublishCommentMapper;
  5. import com.ruoyi.app.domain.TbPublishComment;
  6. import com.ruoyi.app.service.ITbPublishCommentService;
  7. /**
  8. * 我的近况评论
  9. *
  10. * @author Administrator
  11. * @date 2020-10-03
  12. */
  13. @Service
  14. public class TbPublishCommentServiceImpl extends ServiceImpl<TbPublishCommentMapper, TbPublishComment> implements ITbPublishCommentService {
  15. }