| | |
| | | |
| | | |
| | | import com.hx.resultTool.Result; |
| | | import com.hz.his.dto.PageDto; |
| | | import com.hz.his.dto.employee.EmpDocDto; |
| | | import com.hz.phis.dt.TimeDt; |
| | | import com.hz.phis.dt.employee.EmployeeDt; |
| | | import com.hz.his.dto.TimeDto; |
| | | import com.hz.his.dto.employee.EmployeeDto; |
| | | import org.springframework.cloud.openfeign.FeignClient; |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | |
| | | * 查询员工列表 |
| | | */ |
| | | @PostMapping(value = "/emp/page/list") |
| | | Result getEmpList(@RequestBody(required = false) EmployeeDt employeeDt); |
| | | Result getEmpList(@RequestBody(required = false) EmployeeDto employeeDto); |
| | | |
| | | /** |
| | | * 查询员工列表 |
| | | */ |
| | | @PostMapping(value = "/emp/list") |
| | | Result getList(@RequestBody(required = false) TimeDt timeDt); |
| | | Result getList(@RequestBody(required = false) TimeDto timeDto); |
| | | |
| | | /** |
| | | * 查询医生员工列表 |