21 lines
467 B
Markdown
21 lines
467 B
Markdown
---
|
|
title: Mapper代码块
|
|
description:
|
|
published: true
|
|
date: 2021-10-21T07:57:10.297Z
|
|
tags: wg-basic
|
|
editor: markdown
|
|
dateCreated: 2021-10-21T07:57:10.297Z
|
|
---
|
|
|
|
# 排序条件
|
|
```xml
|
|
<if test="order != null and order != ''">
|
|
ORDER BY
|
|
<trim suffixOverrides=",">
|
|
<if test="order == 'teamOrder'">
|
|
t1.team_order <if test="sort != null and sort != ''"><if test="sort == 'asc'">ASC</if><if test="sort == 'desc'">DESC</if></if>,
|
|
</if>
|
|
</trim>
|
|
</if>
|
|
``` |