Spring

BookReviewMapper

Birthmark 2019. 2. 24. 17:29
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package global.sesoc.test.dao;
 
import java.util.List;
import java.util.Map;
 
import global.sesoc.test.vo.BookReview;
 
public interface BookReviewMapper {
    
    public List<BookReview> reviewList() throws Exception;
    
 
    public int reviewWrite(BookReview bookReview) throws Exception;
    
 
    public int reviewDelete(int seq) throws Exception;
}
 
cs