parent
609ad90218
commit
7709ef577c
@ -0,0 +1,13 @@
|
||||
package com.example.flower.service.impl;
|
||||
|
||||
import com.example.flower.entity.Comment;
|
||||
import com.github.pagehelper.PageInfo;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
@Mapper
|
||||
@Repository
|
||||
public interface CommentServiceImpl {
|
||||
PageInfo<Comment> commentList(int page, int page_size,int flower_id);
|
||||
void commentAdd(Comment comment);
|
||||
}
|
||||
Loading…
Reference in new issue