| | |
| | | <if test="nowTime != null"> |
| | | and t.create_time < #{nowTime} |
| | | </if> |
| | | <if test="inspectionStartTime !=null and inspectionStartTime != ''"> |
| | | and t.inspection_time >= #{inspectionStartTime} |
| | | </if> |
| | | <if test="inspectionEndTime !=null and inspectionEndTime != ''"> |
| | | and t.inspection_time <= #{inspectionEndTime} |
| | | </if> |
| | | order by t.sort_number desc |
| | | <if test="page != -1 and page != null "> |
| | | limit #{page}, #{row} |
| | |
| | | <if test="inspectionId !=null and inspectionId != ''"> |
| | | and t.inspection_id= #{inspectionId} |
| | | </if> |
| | | <if test="inspectionStartTime !=null and inspectionStartTime != ''"> |
| | | and t.inspection_time >= #{inspectionStartTime} |
| | | </if> |
| | | <if test="inspectionEndTime !=null and inspectionEndTime != ''"> |
| | | and t.inspection_time <= #{inspectionEndTime} |
| | | </if> |
| | | </select> |
| | | </mapper> |