You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
608 B
Java
20 lines
608 B
Java
package com.bsd.cases.mapper;
|
|
|
|
import com.bsd.cases.model.CaseContent;
|
|
import com.bsd.cases.util.CommonMapper;
|
|
import com.bsd.cases.vo.CaseContentBakVo;
|
|
import org.apache.ibatis.annotations.Param;
|
|
import org.springframework.stereotype.Repository;
|
|
|
|
import java.util.List;
|
|
|
|
@Repository
|
|
public interface CaseContentMapper extends CommonMapper<CaseContent> {
|
|
List<CaseContentBakVo> searchBak(@Param("name") String name
|
|
, @Param("level1Id") Long level1Id
|
|
, @Param("level2Id") Long level2Id
|
|
, @Param("level3Id") Long level3Id);
|
|
|
|
List<CaseContent> getAllContentList();
|
|
}
|