23 lines
556 B
Java
23 lines
556 B
Java
package com.bruce.sams.service.impl;
|
|
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
import com.bruce.sams.domain.ams.Comment;
|
|
import com.bruce.sams.service.CommentService;
|
|
import com.bruce.sams.mapper.CommentMapper;
|
|
import org.springframework.stereotype.Service;
|
|
|
|
/**
|
|
* @author bruce
|
|
* @description 针对表【ams_comment(活动评论表)】的数据库操作Service实现
|
|
* @createDate 2025-02-19 11:22:39
|
|
*/
|
|
@Service
|
|
public class CommentServiceImpl extends ServiceImpl<CommentMapper, Comment>
|
|
implements CommentService{
|
|
|
|
}
|
|
|
|
|
|
|
|
|