11 lines
326 B
Java
11 lines
326 B
Java
![]() |
package cc.iteachyou.cms.dao;
|
||
|
|
||
|
import cc.iteachyou.cms.common.BaseMapper;
|
||
|
import cc.iteachyou.cms.entity.Archives;
|
||
|
import cc.iteachyou.cms.entity.ao.CommentAO;
|
||
|
import org.apache.ibatis.annotations.Param;
|
||
|
|
||
|
public interface SystemCommentsMapper extends BaseMapper<Archives> {
|
||
|
|
||
|
void saveComments(@Param("ao") CommentAO ao);
|
||
|
}
|