| | |
| | | <if test="applyType !=null and applyType != ''"> |
| | | and asa.apply_type= #{applyType} |
| | | </if> |
| | | <if test="startTime != null and startTime != ''"> |
| | | and t.create_time > #{startTime} |
| | | </if> |
| | | <if test="endTime != null and endTime != ''"> |
| | | and t.create_time < #{endTime} |
| | | </if> |
| | | order by t.create_time desc |
| | | <if test="page != -1 and page != null "> |
| | | limit #{page}, #{row} |
| | |
| | | <if test="applyType !=null and applyType != ''"> |
| | | and asa.apply_type= #{applyType} |
| | | </if> |
| | | <if test="startTime != null and startTime != ''"> |
| | | and t.create_time > #{startTime} |
| | | </if> |
| | | <if test="endTime != null and endTime != ''"> |
| | | and t.create_time < #{endTime} |
| | | </if> |
| | | </select> |
| | | </mapper> |