| 12345678910111213141516171819202122232425262728 |
- package com.koobietech.eas.controller;
- import com.koobietech.eas.common.result.JsonResult;
- import com.koobietech.eas.mbg.model.EasArcTlsStudents;
- import com.koobietech.eas.service.EasStuProfileService;
- import org.springframework.web.bind.annotation.PostMapping;
- import org.springframework.web.bind.annotation.RequestBody;
- import org.springframework.web.bind.annotation.RequestMapping;
- import org.springframework.web.bind.annotation.RestController;
- import javax.annotation.Resource;
- import java.io.FileNotFoundException;
- @RestController
- public class EasStuProfileController {
- @Resource
- private EasStuProfileService easStuProfileService;
- @PostMapping("/StuProfileDownload")
- public JsonResult StuProfileDownload(@RequestBody EasArcTlsStudents easArcTlsStudents) throws FileNotFoundException {
- return easStuProfileService.StuProfileDownload(easArcTlsStudents);
- }
- }
|