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

467 B

title description published date tags editor dateCreated
Mapper代码块 true 2021-10-21T07:57:10.297Z wg-basic markdown 2021-10-21T07:57:10.297Z

排序条件

<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>