fix: 修改时间排序。

This commit is contained in:
tianyongbao
2024-09-26 16:22:24 +08:00
parent 26610822f5
commit 7d0442854f
5 changed files with 5 additions and 5 deletions

View File

@@ -62,7 +62,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
</where> </where>
<!-- 数据范围过滤 --> <!-- 数据范围过滤 -->
${params.dataScope} ${params.dataScope}
order by a.create_time desc order by a.visiting_time desc
</select> </select>
<select id="selectHealthDoctorRecordById" parameterType="Long" resultMap="HealthDoctorRecordResult"> <select id="selectHealthDoctorRecordById" parameterType="Long" resultMap="HealthDoctorRecordResult">

View File

@@ -67,7 +67,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
</where> </where>
<!-- 数据范围过滤 --> <!-- 数据范围过滤 -->
${params.dataScope} ${params.dataScope}
order by a.create_time desc order by a.dosing_time desc
</select> </select>
<select id="selectHealthMarRecordById" parameterType="Long" resultMap="HealthMarRecordResult"> <select id="selectHealthMarRecordById" parameterType="Long" resultMap="HealthMarRecordResult">

View File

@@ -63,7 +63,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
</where> </where>
<!-- 数据范围过滤 --> <!-- 数据范围过滤 -->
${params.dataScope} ${params.dataScope}
order by a.create_time desc order by a.occur_time desc
</select> </select>
<select id="selectHealthRecordById" parameterType="Long" resultMap="HealthRecordResult"> <select id="selectHealthRecordById" parameterType="Long" resultMap="HealthRecordResult">

View File

@@ -54,7 +54,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
</where> </where>
<!-- 数据范围过滤 --> <!-- 数据范围过滤 -->
${params.dataScope} ${params.dataScope}
order by a.create_time desc order by a.measure_time desc
</select> </select>
<select id="selectHealthTemperatureRecordById" parameterType="Long" resultMap="HealthTemperatureRecordResult"> <select id="selectHealthTemperatureRecordById" parameterType="Long" resultMap="HealthTemperatureRecordResult">

View File

@@ -30,7 +30,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
</where> </where>
<!-- 数据范围过滤 --> <!-- 数据范围过滤 -->
${params.dataScope} ${params.dataScope}
order by a.create_time desc order by a.measure_time desc
</select> </select>
<select id="selectHealthWeightRecordById" parameterType="Long" resultMap="HealthWeightRecordResult"> <select id="selectHealthWeightRecordById" parameterType="Long" resultMap="HealthWeightRecordResult">