cloudroam
2025-05-30 83b3bf33bfd212723507fb70c3137c63cf8a6823
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
package com.mzl.flower.service.film.impl;
 
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.mzl.flower.dto.request.film.CommentLikesDTO;
import com.mzl.flower.dto.request.film.CommentLikesQueryDTO;
import com.mzl.flower.dto.response.film.CommentLikesVO;
import com.mzl.flower.entity.film.CommentLikes;
import com.mzl.flower.mapper.film.CommentLikesMapper;
import com.mzl.flower.service.film.CommentLikesService;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import org.springframework.stereotype.Service;
 
/**
 * @author generator@Fang
 * @since 2025-05-29
 */
@Service
public class CommentLikesServiceImpl extends ServiceImpl<CommentLikesMapper, CommentLikes> implements CommentLikesService {
 
    @Override
    public void saveCommentLikes(CommentLikesDTO commentLikesDTO) {
 
    }
 
    @Override
    public void updateCommentLikes(CommentLikesDTO commentLikesDTO) {
 
    }
 
    @Override
    public void deleteCommentLikes(String id) {
 
    }
 
    @Override
    public Page<CommentLikesVO> queryPage(CommentLikesQueryDTO commentLikesQueryDTO, Page page) {
        return null;
    }
}