DownfileController.java 416 B

1234567891011121314151617181920
  1. package com.mokamrp.privates.controller;
  2. import com.mokamrp.privates.mapper.pojo.Downfile;
  3. import org.springframework.web.bind.annotation.RequestMapping;
  4. import org.springframework.web.bind.annotation.RestController;
  5. /**
  6. * <p>
  7. * 前端控制器
  8. * </p>
  9. *
  10. * @author gy
  11. * @since 2021-04-22
  12. */
  13. @RestController
  14. @RequestMapping("/downfile")
  15. public class DownfileController extends BaseController<Downfile> {
  16. }