GAWON 2023. 6. 23. 12:11
package org.joonzis.dao;

import java.util.List;

import org.joonzis.vo.CVO;

public interface CDao {
	public int commentCountByIdx(int b_idx);
	public int insertComment(CVO cvo);
	public List<CVO> getCommentList(int b_idx);
	public void removeComment(int c_idx);
	public void removeCommentAll(int b_idx);
}