package com.artfess.examine.controller;


import com.artfess.base.controller.BaseController;
import com.artfess.examine.manager.ExamCollectMaterialManager;
import com.artfess.examine.model.ExamCollectMaterial;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

/**
 * 我的收藏 前端控制器
 *
 * @company 阿特菲斯信息技术有限公司
 * @author min.wu
 * @since 2022-10-19
 */
@RestController
@RequestMapping("/examCollectMaterial/v1/")
public class ExamCollectMaterialController extends BaseController<ExamCollectMaterialManager, ExamCollectMaterial> {

}
