wiki-files/wg-basic/mapper-unit.md

21 lines
467 B
Markdown
Raw Normal View History

2021-10-21 15:57:12 +08:00
---
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>
```