21 lines
546 B
Java
21 lines
546 B
Java
package seed.user.bbs.service;
|
|
|
|
import java.util.List;
|
|
|
|
import seed.map.T_BBS_COMMENT;
|
|
|
|
public interface UserBbsCommentService {
|
|
|
|
//UserBbsController
|
|
public Long getBbsCommentListCnt(Integer bbsDataIdx);
|
|
|
|
//UserBbsController
|
|
public List<T_BBS_COMMENT> getBbsCommentList(Integer bbsDataIdx, int page, int row, String[] qryColumns);
|
|
|
|
//UserBbsController
|
|
public boolean setBbsCommentRegProc(T_BBS_COMMENT tBbsComment, Integer memberIdx, String memberIp);
|
|
|
|
//UserBbsController
|
|
public boolean setBbsCommentDelProc(Integer bbsCommentIdx);
|
|
}
|