| | |
| | | |
| | | import com.hx.resultTool.Result; |
| | | import com.hz.his.dto.PageDto; |
| | | import com.hz.his.dto.organize.OrganizeDto; |
| | | import org.springframework.cloud.openfeign.FeignClient; |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | |
| | | @PostMapping(value = "organization/dept/list") |
| | | Result getList(@RequestBody(required = false) PageDto pageDto); |
| | | |
| | | /** |
| | | * 获取组织结构列表 |
| | | */ |
| | | @PostMapping(value = "/organize/get/list") |
| | | Result getOrganizeList(@RequestBody OrganizeDto organizeDto); |
| | | |
| | | /** |
| | | * 获取组织结构详情 |
| | | */ |
| | | @PostMapping(value = "/organize/get/one") |
| | | Result getOrganizeDetail(@RequestBody OrganizeDto organizeDto); |
| | | |
| | | } |