| | |
| | | <if test="amount !=null and amount != ''"> |
| | | and t.amount= #{amount} |
| | | </if> |
| | | <if test="hasMoney !=null and hasMoney != ''"> |
| | | and t.amount > 0 |
| | | </if> |
| | | <if test="acctType !=null and acctType != ''"> |
| | | and t.acct_type= #{acctType} |
| | | </if> |
| | |
| | | and t.obj_type= #{objType} |
| | | </if> |
| | | <if test="partId !=null and partId != ''"> |
| | | and t.obj_type= #{partId} |
| | | and t.part_id= #{partId} |
| | | </if> |
| | | order by t.create_time desc |
| | | <if test="page != -1 and page != null "> |
| | |
| | | <if test="amount !=null and amount != ''"> |
| | | and t.amount= #{amount} |
| | | </if> |
| | | <if test="hasMoney !=null and hasMoney != ''"> |
| | | and t.amount > 0 |
| | | </if> |
| | | |
| | | <if test="acctType !=null and acctType != ''"> |
| | | and t.acct_type= #{acctType} |
| | | </if> |
| | |
| | | and t.obj_type= #{objType} |
| | | </if> |
| | | <if test="partId !=null and partId != ''"> |
| | | and t.obj_type= #{partId} |
| | | and t.part_id= #{partId} |
| | | </if> |
| | | |
| | | |