Showing
1 changed file
with
2 additions
and
2 deletions
... | ... | @@ -55,10 +55,10 @@ |
55 | 55 | AND type LIKE CONCAT('%',#{alarmType},'%') |
56 | 56 | </if> |
57 | 57 | <if test="startTime!=null"> |
58 | - AND created_time >= #{startTime} | |
58 | + AND m.created_time >= #{startTime} | |
59 | 59 | </if> |
60 | 60 | <if test="endTime!=null"> |
61 | - AND created_time <= #{endTime} | |
61 | + AND m.created_time <= #{endTime} | |
62 | 62 | </if> |
63 | 63 | <if test="status!=null"> |
64 | 64 | AND status IN | ... | ... |