|
|
@@ -73,22 +73,22 @@ public class QuestionServiceImpl extends BaseServiceImpl<QuestionMapper, Questio |
|
|
|
|
|
|
|
private final static SimpleDateFormat dateformat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); |
|
|
|
|
|
|
|
@Override |
|
|
|
public JsonResult deleteByIds(Integer[] ids) { |
|
|
|
if (org.springframework.util.StringUtils.isEmpty(ids)) { |
|
|
|
return JsonResult.error("记录ID不能为空"); |
|
|
|
} |
|
|
|
// String[] item = ids.split(","); |
|
|
|
// 设置Mark=0 |
|
|
|
UpdateWrapper updateWrapper = new UpdateWrapper(); |
|
|
|
updateWrapper.set("mark", 0); |
|
|
|
updateWrapper.in("id", ids); |
|
|
|
boolean result = update(updateWrapper); |
|
|
|
if (!result) { |
|
|
|
return JsonResult.error(); |
|
|
|
} |
|
|
|
return JsonResult.success("删除成功"); |
|
|
|
} |
|
|
|
// @Override |
|
|
|
// public JsonResult deleteByIds(Integer[] ids) { |
|
|
|
// if (org.springframework.util.StringUtils.isEmpty(ids)) { |
|
|
|
// return JsonResult.error("记录ID不能为空"); |
|
|
|
// } |
|
|
|
//// String[] item = ids.split(","); |
|
|
|
// // 设置Mark=0 |
|
|
|
// UpdateWrapper updateWrapper = new UpdateWrapper(); |
|
|
|
// updateWrapper.set("mark", 0); |
|
|
|
// updateWrapper.in("id", ids); |
|
|
|
// boolean result = update(updateWrapper); |
|
|
|
// if (!result) { |
|
|
|
// return JsonResult.error(); |
|
|
|
// } |
|
|
|
// return JsonResult.success("删除成功"); |
|
|
|
// } |
|
|
|
|
|
|
|
@Override |
|
|
|
@Transactional(readOnly = true) |