Compare commits
2 Commits
415bfd3086
...
cbd2c424dc
Author | SHA1 | Date |
---|---|---|
|
cbd2c424dc | |
|
e61cb0b9ea |
|
@ -1,13 +1,11 @@
|
|||
package com.zcloud.controller.accident;
|
||||
|
||||
import cn.hutool.core.bean.BeanUtil;
|
||||
import cn.hutool.core.collection.CollUtil;
|
||||
import cn.hutool.core.util.ObjectUtil;
|
||||
import cn.hutool.core.util.StrUtil;
|
||||
import com.zcloud.controller.base.BaseController;
|
||||
import com.zcloud.entity.Page;
|
||||
import com.zcloud.entity.PageData;
|
||||
import com.zcloud.entity.accident.AccidentRecords;
|
||||
import com.zcloud.service.accident.AccidentRecordsService;
|
||||
import com.zcloud.util.ObjectExcelView;
|
||||
import lombok.RequiredArgsConstructor;
|
||||
|
@ -95,7 +93,7 @@ public class AccidentRecordsController extends BaseController {
|
|||
if (CollUtil.isEmpty(pageData)){
|
||||
throw new RuntimeException("参数不能为空");
|
||||
}
|
||||
if (pageData.get("id") != null) {
|
||||
if (pageData.get("id") == null) {
|
||||
throw new RuntimeException("id不能为空");
|
||||
}
|
||||
accidentRecordsService.update(pageData);
|
||||
|
|
|
@ -97,11 +97,12 @@ public class AccidentRecordsServiceImpl implements AccidentRecordsService {
|
|||
public void update(PageData pageData) {
|
||||
AccidentRecords accidentRecords = new AccidentRecords();
|
||||
accidentRecords.setIncidentNumber(pageData.getString("incidentNumber"));
|
||||
accidentRecords.setId(pageData.getString("id"));
|
||||
accidentRecords.setIncidentName(pageData.getString("incidentName"));
|
||||
accidentRecords.setIncidentType(pageData.getString("incidentType"));
|
||||
accidentRecords.setIncidentLevel(pageData.getString("incidentLevel"));
|
||||
accidentRecords.setLocation(pageData.getString("location"));
|
||||
accidentRecords.setIncidentDate(DateUtil.parse(pageData.getString("incidentDate"), DatePattern.UTC_MS_PATTERN));
|
||||
accidentRecords.setIncidentDate(DateUtil.parse(pageData.getString("incidentDate"), "YYYY-MM-DD HH:mm:ss"));
|
||||
accidentRecords.setDirectLoss(Convert.toInt(pageData.get("directLoss")));
|
||||
accidentRecords.setInjured(Convert.toInt(pageData.get("injured")));
|
||||
accidentRecords.setSeriouslyInjured(Convert.toInt(pageData.get("seriouslyInjured")));
|
||||
|
@ -111,7 +112,7 @@ public class AccidentRecordsServiceImpl implements AccidentRecordsService {
|
|||
accidentRecords.setSuggestions(pageData.getString("suggestions"));
|
||||
accidentRecords.setMeasures(pageData.getString("measures"));
|
||||
accidentRecords.setCreator(pageData.getString("creator"));
|
||||
accidentRecords.setReportDate(DateUtil.parse(pageData.getString("reportDate"), DatePattern.UTC_MS_PATTERN));
|
||||
accidentRecords.setReportDate(DateUtil.parse(pageData.getString("reportDate"), "YYYY-MM-DD HH:mm:ss"));
|
||||
accidentRecords.setUpdatedBy(Jurisdiction.getUsername());
|
||||
accidentRecords.setUpdatedTime(new Date());
|
||||
String corpinfoId = StrUtil.isEmpty(accidentRecords.getCorpinfoId()) ? Jurisdiction.getCORPINFO_ID() : accidentRecords.getCorpinfoId();
|
||||
|
|
Loading…
Reference in New Issue