| 1234567891011121314151617181920 |
- package com.mokamrp.privates.controller;
- import com.mokamrp.privates.mapper.pojo.Downfile;
- import org.springframework.web.bind.annotation.RequestMapping;
- import org.springframework.web.bind.annotation.RestController;
- /**
- * <p>
- * 前端控制器
- * </p>
- *
- * @author gy
- * @since 2021-04-22
- */
- @RestController
- @RequestMapping("/downfile")
- public class DownfileController extends BaseController<Downfile> {
- }
|