Commit 5ffc2849 authored by taabe's avatar taabe

修改bug

parent 8809c1d5
package com.yeejoin.amos.api.systemctl.generator;
package com.yeejoin.amos.boot.biz.common.utils;
import java.util.Map;
import java.util.HashMap;
......
......@@ -70,7 +70,7 @@ public class RescueStationController extends BaseController {
@ApiOperation(httpMethod = "DELETE", value = "根据id删除", notes = "根据id删除")
public ResponseModel<Boolean> deleteById(@PathVariable Long id) {
RescueStation rescueStation = iRescueStationService.getById(id);
rescueStation.setDelete(true);
rescueStation.setIsDelete(true);
rescueStation.setRecUserId(getUserId());
rescueStation.setRecDate(new Date());
boolean remove = iRescueStationService.updateById(rescueStation);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment