package com.mindskip.xzs.repository;
|
|
import com.mindskip.xzs.domain.StudyType;
|
import com.mindskip.xzs.domain.vo.StudyTypeVO;
|
import org.apache.ibatis.annotations.Mapper;
|
import org.apache.ibatis.annotations.Param;
|
|
import java.util.List;
|
|
/**
|
* @author:xp
|
* @date:2024/5/13 10:23
|
*/
|
@Mapper
|
public interface StudyTypeMapper {
|
|
|
List<StudyTypeVO> page(@Param("query") StudyTypeVO query);
|
|
|
void add(@Param("entity") StudyType studyType);
|
|
void update(@Param("vo") StudyTypeVO vo);
|
|
void remove(Integer id);
|
|
List<StudyTypeVO> list();
|
}
|