2022-10-20 09:27:13 +00:00
|
|
|
package com.dbnt.faisp.faRpt.mapper;
|
|
|
|
|
|
|
|
|
|
import com.dbnt.faisp.faRpt.model.FaRptBoard;
|
|
|
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Mapper
|
|
|
|
|
public interface FaRptMapper {
|
|
|
|
|
|
|
|
|
|
List<FaRptBoard> selectFaRptList(FaRptBoard faRptBoard);
|
|
|
|
|
|
|
|
|
|
Integer selectFaRptCnt(FaRptBoard faRptBoard);
|
2022-10-25 08:49:27 +00:00
|
|
|
|
|
|
|
|
String selectHashTags(Integer faRptKey);
|
2022-10-20 09:27:13 +00:00
|
|
|
}
|