| | |
| | | </sql> |
| | | |
| | | <select id="getReportLossList" resultType="java.util.Map"> |
| | | select t1.*,t2.nickName,t2.phone ,t3.phone as handleUser from t_report_loss t1 left join t_user t2 on t1.userId = t2.id left join sys_user t3 on t1.handleUserId =t3.id |
| | | select t1.*, |
| | | t2.nickName, |
| | | t2.phone , |
| | | t3.phone as handleUser |
| | | from t_report_loss t1 |
| | | left join t_user t2 on t1.userId = t2.id |
| | | left join sys_user t3 on t1.handleUserId =t3.id |
| | | <where> |
| | | t1.state !=3 |
| | | <if test="beginTime != null and beginTime != '' and endTime != null and endTime != ''"> |