MomentCommentsServiceImpl.java 624 B

12345678910111213141516171819202122
  1. package com.zhentao.moment.service.impl;
  2. import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
  3. import com.zhentao.moment.domain.MomentComments;
  4. import com.zhentao.moment.service.MomentCommentsService;
  5. import com.zhentao.moment.mapper.MomentCommentsMapper;
  6. import org.springframework.stereotype.Service;
  7. /**
  8. * @author 86159
  9. * @description 针对表【moment_comments(朋友圈评论表)】的数据库操作Service实现
  10. * @createDate 2025-06-04 11:56:59
  11. */
  12. @Service
  13. public class MomentCommentsServiceImpl extends ServiceImpl<MomentCommentsMapper, MomentComments>
  14. implements MomentCommentsService{
  15. }