lxweb/src/main/java/cc/iteachyou/cms/dao/SystemCommentsMapper.java

16 lines
455 B
Java
Raw Normal View History

2025-04-22 17:15:27 +08:00
package cc.iteachyou.cms.dao;
import cc.iteachyou.cms.common.BaseMapper;
2025-04-29 14:25:29 +08:00
import cc.iteachyou.cms.entity.SystemComments;
2025-04-22 17:15:27 +08:00
import cc.iteachyou.cms.entity.ao.CommentAO;
import org.apache.ibatis.annotations.Param;
2025-04-29 14:25:29 +08:00
import java.util.List;
import java.util.Map;
public interface SystemCommentsMapper extends BaseMapper<SystemComments> {
2025-04-22 17:15:27 +08:00
void saveComments(@Param("ao") CommentAO ao);
2025-04-29 14:25:29 +08:00
List<SystemComments> queryListByPage(Map<String, Object> entity);
2025-04-22 17:15:27 +08:00
}