wangrenhuang
2023-07-05 5b47988e303e74fc3440ee67a95dbeba58dd50e1
查询医生排班接口优化
2个文件已修改
26 ■■■■■ 已修改文件
phis-feign/src/main/java/com/hz/his/dto/doctorTime/DoctorTimeDto.java 7 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
phis-feign/src/main/java/com/hz/his/feign/service/phis/SDoctorTimeService.java 19 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
phis-feign/src/main/java/com/hz/his/dto/doctorTime/DoctorTimeDto.java
@@ -3,6 +3,8 @@
import com.hz.his.dto.PageDto;
import lombok.Data;
import java.util.Date;
/**
 * @ClassName DoctorTimeDto
 * @Description 医生排班dto
@@ -16,4 +18,9 @@
    String monthStr;
    String shopId;
    String doctorId;
    String dayTime;
    Date startTime;
    Date endTime;
    Integer intervalTime;
}
phis-feign/src/main/java/com/hz/his/feign/service/phis/SDoctorTimeService.java
@@ -26,5 +26,24 @@
    @PostMapping(value = "/doctor/time/list")
    Result list(@RequestBody DoctorTimeDto dto);
    /**
     * 医生排班时间信息
     * @return Result
     */
    @PostMapping(value = "/doctor/time/info")
    Result info(@RequestBody DoctorTimeDto dto);
    /**
     * 判断医生排班时间是否被占用
     * @return Result
     */
    @PostMapping(value = "/doctor/time/checkTimeIsHasAppointment")
    Result checkTimeIsHasAppointment(@RequestBody DoctorTimeDto dto);
    /**
     * 医生排班时间详情
     * @return Result
     */
    @PostMapping(value = "/doctor/time/details")
    Result details(@RequestBody DoctorTimeDto dto);
}