| | |
| | | package com.ruoyi.web.controller.smartor; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | import com.ruoyi.common.annotation.AddOrgId; |
| | | import io.swagger.annotations.Api; |
| | |
| | | |
| | | import javax.servlet.http.HttpServletResponse; |
| | | |
| | | import org.apache.commons.collections4.CollectionUtils; |
| | | import org.springframework.security.access.prepost.PreAuthorize; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.web.bind.annotation.GetMapping; |
| | |
| | | } |
| | | |
| | | /** |
| | | * 查询模板科室关联列表不分页 |
| | | */ |
| | | @ApiOperation("查询模板科室关联列表不分页") |
| | | //@PreAuthorize("@ss.hasPermi('smartor:taskdiag:list')") |
| | | @AddOrgId(field = "orgid", paramIndex = 0, campusField = "campusid") |
| | | @PostMapping("listnopage") |
| | | public Map<String, Object> listnopage(@RequestBody ServiceTaskdiag serviceTaskdiag) { |
| | | List<ServiceTaskdiag> list = serviceTaskdiagService.selectServiceTaskdiagList(serviceTaskdiag); |
| | | return getDataTable3(CollectionUtils.isEmpty(list) ? 0 : list.size(), list); |
| | | } |
| | | |
| | | /** |
| | | * 导出模板科室关联列表 |
| | | */ |
| | | @ApiOperation("导出模板科室关联列表") |