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