Blame view

SubjectTestDictService.java 812 Bytes
涂亚平 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
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);

}