Commit 093e2505c3ea8882d72e25e16b6d23f817295505
1 parent
c09086d0
修改isDelete 条件
Showing
1 changed file
with
3 additions
and
3 deletions
resources/mybatis1/sunvote/HomeworkMapper.xml
| ... | ... | @@ -196,7 +196,7 @@ |
| 196 | 196 | and COMPLETE_DATE < #{pd.ENDDATE} |
| 197 | 197 | </if> |
| 198 | 198 | |
| 199 | - and IS_DELETE != '1' | |
| 199 | + and IS_DELETE is null | |
| 200 | 200 | </select> |
| 201 | 201 | |
| 202 | 202 | <!-- 列表(全部) --> |
| ... | ... | @@ -225,7 +225,7 @@ |
| 225 | 225 | and COMPLETE_DATE > #{COMPLETE_DATE} |
| 226 | 226 | </if> |
| 227 | 227 | |
| 228 | - and IS_DELETE != '1' | |
| 228 | + and IS_DELETE is null | |
| 229 | 229 | |
| 230 | 230 | </select> |
| 231 | 231 | |
| ... | ... | @@ -263,7 +263,7 @@ |
| 263 | 263 | and COMPLETE_DATE > #{COMPLETE_DATE} |
| 264 | 264 | </if> |
| 265 | 265 | |
| 266 | - and IS_DELETE != '1' | |
| 266 | + and IS_DELETE is null | |
| 267 | 267 | </select> |
| 268 | 268 | |
| 269 | 269 | <!-- 批量删除 --> | ... | ... |