Commit 36d97a0a by 吕明尚

日志排序

parent f3a86057
......@@ -21,7 +21,7 @@ import java.util.List;
* @date 2024-06-24
*/
@RestController
@RequestMapping("/system/durationLog")
@RequestMapping("/durationLog")
public class DurationLogController extends BaseController {
@Autowired
private DurationLogService durationLogService;
......
......@@ -67,6 +67,7 @@
<if test="operationTime != null ">and b.operation_time = #{operationTime}</if>
<if test="isDelete != null ">and b.is_delete = #{isDelete}</if>
</where>
ORDER BY b.operation_time DESC
</select>
<select id="selectBalanceLogById" parameterType="Long" resultMap="BalanceLogResult">
......
......@@ -67,6 +67,7 @@
<if test="operationTime != null ">and d.operation_time = #{operationTime}</if>
<if test="isDelete != null ">and d.is_delete = #{isDelete}</if>
</where>
ORDER BY d.operation_time DESC
</select>
<select id="selectDurationLogById" parameterType="Long" resultMap="DurationLogResult">
......
......@@ -67,6 +67,7 @@
<if test="operationTime != null ">and i.operation_time = #{operationTime}</if>
<if test="isDelete != null ">and i.is_delete = #{isDelete}</if>
</where>
ORDER BY i.operation_time DESC
</select>
<select id="selectIntegralLogById" parameterType="Long" resultMap="IntegralLogResult">
......
......@@ -70,6 +70,7 @@
<if test="operationTime != null ">and m.operation_time = #{operationTime}</if>
<if test="isDelete != null ">and m.is_delete = #{isDelete}</if>
</where>
ORDER BY m.operation_time DESC
</select>
<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