package com.mindskip.xzs.service;
|
|
import com.mindskip.xzs.base.RestResponse;
|
import com.mindskip.xzs.domain.vo.StudyTypeVO;
|
|
/**
|
* @author:xp
|
* @date:2024/5/13 10:24
|
*/
|
public interface StudyTypeService {
|
|
|
/**
|
* 分页
|
*
|
* @param query
|
* @return
|
*/
|
RestResponse page(StudyTypeVO query);
|
|
/**
|
* 添加
|
*
|
* @param vo
|
* @return
|
*/
|
RestResponse add(StudyTypeVO vo);
|
|
/**
|
* 修改
|
*
|
* @param query
|
* @return
|
*/
|
RestResponse update(StudyTypeVO query);
|
|
/**
|
* 删除
|
*
|
* @param id
|
* @return
|
*/
|
RestResponse remove(Integer id);
|
|
/**
|
* 下拉列表
|
*
|
* @return
|
*/
|
RestResponse list();
|
}
|