package com.meishu.controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; import io.swagger.annotations.Api; /** * <p> * 通知/附件作业表 前端控制器 * </p> * * @author DengMin * @since 2021-09-16 */ @RestController @Api(tags = "通知/附件作业表") @RequestMapping("/written-homework-do") public class WrittenHomeworkController { }