| | |
| | | import com.ruoyi.common.core.domain.model.LoginUser; |
| | | import com.ruoyi.common.core.page.TableDataInfo; |
| | | import com.ruoyi.common.enums.BusinessType; |
| | | import com.ruoyi.common.utils.PageUtils; |
| | | import com.ruoyi.common.utils.poi.ExcelUtil; |
| | | import com.smartor.domain.PatArchive; |
| | | import com.smartor.domain.PatArchiveReq; |
| | | import com.smartor.domain.PatImportInfoVO; |
| | | import com.smartor.domain.PatUpInfoVO; |
| | | import com.smartor.domain.*; |
| | | import com.smartor.service.IPatArchiveService; |
| | | import io.swagger.annotations.Api; |
| | | import io.swagger.annotations.ApiImplicitParam; |
| | | import io.swagger.annotations.ApiImplicitParams; |
| | | import io.swagger.annotations.ApiOperation; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.http.MediaType; |
| | | import org.springframework.security.access.prepost.PreAuthorize; |
| | | import org.springframework.util.CollectionUtils; |
| | | import org.springframework.web.bind.annotation.*; |
| | | import org.springframework.web.context.request.RequestContextHolder; |
| | | import org.springframework.web.context.request.ServletRequestAttributes; |
| | | import org.springframework.web.multipart.MultipartFile; |
| | | |
| | | import javax.servlet.http.HttpServletResponse; |
| | | import java.util.List; |
| | | import java.util.concurrent.Executor; |
| | | import java.util.concurrent.Executors; |
| | | |
| | | /** |
| | | * 患者档案Controller |
| | |
| | | * @author smartor |
| | | * @date 2023-03-04 |
| | | */ |
| | | @Api("患者档案") |
| | | @Api(description = "患者档案") |
| | | @RestController |
| | | @RequestMapping("/smartor/patarchive") |
| | | public class PatArchiveController extends BaseController { |
| | | @Autowired |
| | | private IPatArchiveService patArchiveService; |
| | | |
| | | /** |
| | | * 查询患者档案列表 |
| | | */ |
| | | @ApiOperation("查询患者档案列表") |
| | | @PreAuthorize("@ss.hasPermi('smartor:patarchive:list')") |
| | | @GetMapping("/list") |
| | | public TableDataInfo list(PatArchive patArchive) { |
| | | startPage(); |
| | | List<PatArchive> list = patArchiveService.selectPatArchiveList(patArchive); |
| | | return getDataTable(list); |
| | | } |
| | | // |
| | | // /** |
| | | // * 查询患者档案列表 |
| | | // */ |
| | | // @ApiOperation("查询患者档案列表") |
| | | // @PreAuthorize("@ss.hasPermi('smartor:patarchive:list')") |
| | | // @PostMapping("/list") |
| | | // public TableDataInfo list(@RequestBody PatArchive patArchive) { |
| | | // startPage(); |
| | | // List<PatArchive> list = patArchiveService.selectPatArchiveList(patArchive); |
| | | // return getDataTable(list); |
| | | //} |
| | | |
| | | /** |
| | | * 导出患者档案列表 |
| | |
| | | */ |
| | | @ApiOperation("获取患者档案详细信息") |
| | | @PreAuthorize("@ss.hasPermi('smartor:patarchive:query')") |
| | | @GetMapping(value = "/{patid}") |
| | | @GetMapping(value = "/getInfo/{patid}") |
| | | @ApiImplicitParam(name = "patid", value = "患者id") |
| | | public AjaxResult getInfo(@PathVariable(name = "patid") Long patid) { |
| | | return success(patArchiveService.selectPatArchiveByPatid(patid)); |
| | | } |
| | | |
| | | /** |
| | | * 新增患者档案 |
| | | */ |
| | | @ApiOperation("新增患者档案") |
| | | @PreAuthorize("@ss.hasPermi('smartor:patarchive:add')") |
| | | @Log(title = "患者档案", businessType = BusinessType.INSERT) |
| | | @PostMapping |
| | | public AjaxResult add(@RequestBody PatArchive patArchive) { |
| | | return toAjax(patArchiveService.insertPatArchive(patArchive)); |
| | | } |
| | | // /** |
| | | // * 新增患者档案 |
| | | // */ |
| | | // @ApiOperation("新增患者档案") |
| | | // @PreAuthorize("@ss.hasPermi('smartor:patarchive:add')") |
| | | // @Log(title = "患者档案", businessType = BusinessType.INSERT) |
| | | // @PostMapping("/add") |
| | | // public AjaxResult add(@RequestBody PatArchive patArchive) { |
| | | // return toAjax(patArchiveService.insertPatArchive(patArchive)); |
| | | // } |
| | | |
| | | /** |
| | | * 修改患者档案 |
| | | * 新增或修改患者档信息 |
| | | */ |
| | | @ApiOperation("修改患者档案") |
| | | @ApiOperation("新增或修改患者档信息") |
| | | @PreAuthorize("@ss.hasPermi('smartor:patarchive:edit')") |
| | | @Log(title = "患者档案", businessType = BusinessType.UPDATE) |
| | | @PutMapping |
| | | public AjaxResult edit(@RequestBody PatArchive patArchive) { |
| | | return toAjax(patArchiveService.updatePatArchive(patArchive)); |
| | | @PostMapping("/saveOrUpdatePatInfo") |
| | | public AjaxResult saveOrUpdatePatInfo(@RequestBody PatArchiveVO patArchiveVO) { |
| | | return toAjax(patArchiveService.saveOrUpdatePatInfo(patArchiveVO)); |
| | | } |
| | | |
| | | /** |
| | |
| | | @ApiOperation("删除患者档案") |
| | | @PreAuthorize("@ss.hasPermi('smartor:patarchive:remove')") |
| | | @Log(title = "患者档案", businessType = BusinessType.DELETE) |
| | | @DeleteMapping("/{patids}") |
| | | @GetMapping("/remove/{patids}") |
| | | @ApiImplicitParam(name = "patids", value = "患者id集合", dataType = "long", dataTypeClass = Long.class) |
| | | public AjaxResult remove(@PathVariable Long[] patids) { |
| | | return toAjax(patArchiveService.deletePatArchiveByPatids(patids)); |
| | |
| | | @PostMapping("/importFilehandle") |
| | | @ApiImplicitParams({@ApiImplicitParam(name = "tags", value = "标签"), @ApiImplicitParam(name = "multipartFile", value = "上传文件")}) |
| | | public AjaxResult importFilehandle(@RequestParam("tags") String tags, @RequestParam("multipartFile") MultipartFile multipartFile) { |
| | | Executor executor = Executors.newFixedThreadPool(3); |
| | | //获取当前登陆人 |
| | | LoginUser loginUser = getLoginUser(); |
| | | SysUser user = loginUser.getUser(); |
| | |
| | | @ApiOperation("患者信息导入模板") |
| | | @PostMapping("/patImportTemplate") |
| | | public void patImportTemplate(HttpServletResponse response) { |
| | | ExcelUtil<PatImportInfoVO> util = new ExcelUtil<PatImportInfoVO>(PatImportInfoVO.class); |
| | | // ExcelUtil<PatImportInfoVO> util = new ExcelUtil<PatImportInfoVO>(PatImportInfoVO.class); |
| | | ExcelUtil<PatArchive> util = new ExcelUtil<PatArchive>(PatArchive.class); |
| | | util.importTemplateExcel(response, "患者信息导入"); |
| | | } |
| | | |
| | |
| | | @ApiOperation("查询患者列表") |
| | | @PostMapping("/patInfoByContion") |
| | | public TableDataInfo patInfoByCondition(@RequestBody PatArchiveReq patArchive) { |
| | | startPage(); |
| | | PageUtils.startPageByPost(patArchive.getPageNum(), patArchive.getPageSize()); |
| | | return getDataTable(patArchiveService.patInfoByContion(patArchive)); |
| | | } |
| | | |
| | | |
| | | // /** |
| | | // * 患者标签管理 |
| | | // */ |
| | | // @ApiOperation("患者标签管理") |
| | | // @PostMapping("/patTagByContion") |
| | | // public TableDataInfo patTagByContion(@RequestBody List<Long> tagids) { |
| | | // startPage(); |
| | | // return getDataTable(patArchiveService.patTagByContion(tagids)); |
| | | // } |
| | | |
| | | |
| | | /** |