This commit is contained in:
2023-12-20 16:20:49 +08:00
parent dd432ead11
commit 026a299f88
48 changed files with 37 additions and 438 deletions

View File

@@ -0,0 +1,19 @@
package com.lovenav.dao;
import com.lovenav.entity.Comment;
import org.springframework.stereotype.Repository;
@Repository
public interface CommentDao {
int deleteByPrimaryKey(Integer id);
int insert(Comment record);
int insertSelective(Comment record);
Comment selectByPrimaryKey(Integer id);
int updateByPrimaryKeySelective(Comment record);
int updateByPrimaryKey(Comment record);
}