MomentCommentsService.java 372 B

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