时间修改

This commit is contained in:
zhangheng 2024-04-12 10:17:24 +08:00
parent e7a4d1494d
commit 7e907edcd8
2 changed files with 2 additions and 4 deletions

View File

@ -118,6 +118,4 @@ public class SignPatientManageRouteController extends BaseController {
public AjaxResult addPatientQuestionResult(@RequestBody PatientQuestionSubmitResultDTO dto) {
return signPatientManageRouteService.addPatientQuestionResult(dto);
}
}

View File

@ -141,10 +141,10 @@
and pi.visit_method = #{visitMethod}
</if>
<if test="executeTime != null ">
and pter.execute_time &lt;= #{startDate}
and pter.execute_time &gt;=#{startDate}
</if>
<if test="executeTime != null ">
and pter.execute_time &gt;= #{endDate}
and pter.execute_time &lt;= #{endDate}
</if>
<if test="manageRouteName != null and manageRouteName != ''">
and pter.manage_route_name like concat('%', #{manageRouteName}, '%')