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,7 +196,7 @@ | ||
| 196 | and COMPLETE_DATE < #{pd.ENDDATE} | 196 | and COMPLETE_DATE < #{pd.ENDDATE} |
| 197 | </if> | 197 | </if> |
| 198 | 198 | ||
| 199 | - and IS_DELETE != '1' | 199 | + and IS_DELETE is null |
| 200 | </select> | 200 | </select> |
| 201 | 201 | ||
| 202 | <!-- 列表(全部) --> | 202 | <!-- 列表(全部) --> |
| @@ -225,7 +225,7 @@ | @@ -225,7 +225,7 @@ | ||
| 225 | and COMPLETE_DATE > #{COMPLETE_DATE} | 225 | and COMPLETE_DATE > #{COMPLETE_DATE} |
| 226 | </if> | 226 | </if> |
| 227 | 227 | ||
| 228 | - and IS_DELETE != '1' | 228 | + and IS_DELETE is null |
| 229 | 229 | ||
| 230 | </select> | 230 | </select> |
| 231 | 231 | ||
| @@ -263,7 +263,7 @@ | @@ -263,7 +263,7 @@ | ||
| 263 | and COMPLETE_DATE > #{COMPLETE_DATE} | 263 | and COMPLETE_DATE > #{COMPLETE_DATE} |
| 264 | </if> | 264 | </if> |
| 265 | 265 | ||
| 266 | - and IS_DELETE != '1' | 266 | + and IS_DELETE is null |
| 267 | </select> | 267 | </select> |
| 268 | 268 | ||
| 269 | <!-- 批量删除 --> | 269 | <!-- 批量删除 --> |