|
|
|
@@ -252,8 +252,15 @@ |
|
|
|
<if test=" null != type "> |
|
|
|
and ms.`type` = #{type} |
|
|
|
</if> |
|
|
|
<if test=" null != status "> |
|
|
|
and ms.`status` = #{status} |
|
|
|
<if test=" null != status"> |
|
|
|
<choose> |
|
|
|
<when test="status=0"> |
|
|
|
and ms.`status` = #{status} |
|
|
|
</when> |
|
|
|
<otherwise> |
|
|
|
and ms.`status` in (1,2) |
|
|
|
</otherwise> |
|
|
|
</choose> |
|
|
|
</if> |
|
|
|
<if test=" null != freeze "> |
|
|
|
and ms.`freeze` = #{freeze} |
|
|
|
|