2022-09-16 09:01:22 +00:00
|
|
|
package com.dbnt.faisp.publicBoard.mapper;
|
|
|
|
|
|
|
|
|
|
import com.dbnt.faisp.publicBoard.model.PublicBoard;
|
|
|
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
|
|
@Mapper
|
|
|
|
|
public interface PublicBoardMapper {
|
|
|
|
|
List<PublicBoard> selectContentList(PublicBoard publicBoard);
|
2022-09-27 08:57:27 +00:00
|
|
|
List<PublicBoard> selectContentListWhere(PublicBoard publicBoard);
|
2022-09-16 09:01:22 +00:00
|
|
|
|
|
|
|
|
Integer selectContentListCnt(PublicBoard publicBoard);
|
|
|
|
|
}
|