package com.meishu.service; import com.baomidou.mybatisplus.core.metadata.IPage; import com.baomidou.mybatisplus.extension.service.IService; import com.meishu.dto.test.GetAllTestDTO; import com.meishu.model.SubjectTestDictDO; import com.meishu.vo.test.GetAllTestVO; import com.meishu.vo.test.GetTestReportVO; import java.util.List; /** * <p> * 测评表 服务类 * </p> * * @author Tuyp * @since 2021-05-20 */ public interface SubjectTestDictService extends IService<SubjectTestDictDO> { IPage<GetAllTestVO> getAllTest(GetAllTestDTO getAllTestDTO); List<GetAllTestVO> getTest(GetAllTestDTO getAllTestDTO); String insertTest(SubjectTestDictDO subjectTestDictDO); String updateTest(SubjectTestDictDO subjectTestDictDO); String deleteByTestId(SubjectTestDictDO subjectTestDictDO); }