Commit 36d97a0a by 吕明尚

日志排序

parent f3a86057
...@@ -21,7 +21,7 @@ import java.util.List; ...@@ -21,7 +21,7 @@ import java.util.List;
* @date 2024-06-24 * @date 2024-06-24
*/ */
@RestController @RestController
@RequestMapping("/system/durationLog") @RequestMapping("/durationLog")
public class DurationLogController extends BaseController { public class DurationLogController extends BaseController {
@Autowired @Autowired
private DurationLogService durationLogService; private DurationLogService durationLogService;
......
...@@ -67,6 +67,7 @@ ...@@ -67,6 +67,7 @@
<if test="operationTime != null ">and b.operation_time = #{operationTime}</if> <if test="operationTime != null ">and b.operation_time = #{operationTime}</if>
<if test="isDelete != null ">and b.is_delete = #{isDelete}</if> <if test="isDelete != null ">and b.is_delete = #{isDelete}</if>
</where> </where>
ORDER BY b.operation_time DESC
</select> </select>
<select id="selectBalanceLogById" parameterType="Long" resultMap="BalanceLogResult"> <select id="selectBalanceLogById" parameterType="Long" resultMap="BalanceLogResult">
......
...@@ -67,6 +67,7 @@ ...@@ -67,6 +67,7 @@
<if test="operationTime != null ">and d.operation_time = #{operationTime}</if> <if test="operationTime != null ">and d.operation_time = #{operationTime}</if>
<if test="isDelete != null ">and d.is_delete = #{isDelete}</if> <if test="isDelete != null ">and d.is_delete = #{isDelete}</if>
</where> </where>
ORDER BY d.operation_time DESC
</select> </select>
<select id="selectDurationLogById" parameterType="Long" resultMap="DurationLogResult"> <select id="selectDurationLogById" parameterType="Long" resultMap="DurationLogResult">
......
...@@ -67,6 +67,7 @@ ...@@ -67,6 +67,7 @@
<if test="operationTime != null ">and i.operation_time = #{operationTime}</if> <if test="operationTime != null ">and i.operation_time = #{operationTime}</if>
<if test="isDelete != null ">and i.is_delete = #{isDelete}</if> <if test="isDelete != null ">and i.is_delete = #{isDelete}</if>
</where> </where>
ORDER BY i.operation_time DESC
</select> </select>
<select id="selectIntegralLogById" parameterType="Long" resultMap="IntegralLogResult"> <select id="selectIntegralLogById" parameterType="Long" resultMap="IntegralLogResult">
......
...@@ -70,6 +70,7 @@ ...@@ -70,6 +70,7 @@
<if test="operationTime != null ">and m.operation_time = #{operationTime}</if> <if test="operationTime != null ">and m.operation_time = #{operationTime}</if>
<if test="isDelete != null ">and m.is_delete = #{isDelete}</if> <if test="isDelete != null ">and m.is_delete = #{isDelete}</if>
</where> </where>
ORDER BY m.operation_time DESC
</select> </select>
<select id="selectMemberProgressLogById" parameterType="Long" resultMap="MemberProgressLogResult"> <select id="selectMemberProgressLogById" parameterType="Long" resultMap="MemberProgressLogResult">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment