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