|
|
|
@ -2,10 +2,12 @@ package com.sztzjy.money_management.mapper;
|
|
|
|
|
|
|
|
|
|
import com.sztzjy.money_management.entity.CaseInfo;
|
|
|
|
|
import com.sztzjy.money_management.entity.CaseInfoExample;
|
|
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
|
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
|
|
|
|
|
|
@Mapper
|
|
|
|
|
public interface CaseInfoMapper {
|
|
|
|
|
long countByExample(CaseInfoExample example);
|
|
|
|
@ -36,5 +38,7 @@ public interface CaseInfoMapper {
|
|
|
|
|
|
|
|
|
|
int updateByPrimaryKey(CaseInfo record);
|
|
|
|
|
|
|
|
|
|
List<CaseInfo> getCaseInfoList(@Param("keyWord") String keyWord,@Param("type") String type);
|
|
|
|
|
List<CaseInfo> getCaseInfoList(@Param("schoolId") String schoolId,
|
|
|
|
|
@Param("keyWord") String keyWord,
|
|
|
|
|
@Param("type") String type);
|
|
|
|
|
}
|