- package com.zhentao.moment.service;
- import com.zhentao.moment.domain.MomentComments;
- import com.baomidou.mybatisplus.extension.service.IService;
- /**
- * @author 86159
- * @description 针对表【moment_comments(朋友圈评论表)】的数据库操作Service
- * @createDate 2025-06-04 11:56:59
- */
- public interface MomentCommentsService extends IService<MomentComments> {
- }
|