Gitiles
Code Review
Sign In
gerrit.lilingkun.com
/
G9Backend
/
23ad1259bb68d5a06f447f37a1f41841821677cb
/
.
/
src
/
main
/
java
/
com
/
g9
/
g9backend
/
mapper
/
CommentMapper.java
blob: abb0c25357a879251d703990ca211672e356b6bb [
file
] [
log
] [
blame
]
package
com
.
g9
.
g9backend
.
mapper
;
import
com
.
baomidou
.
mybatisplus
.
core
.
mapper
.
BaseMapper
;
import
com
.
g9
.
g9backend
.
pojo
.
Comment
;
import
org
.
apache
.
ibatis
.
annotations
.
Mapper
;
@Mapper
public
interface
CommentMapper
extends
BaseMapper
<
Comment
>
{
}