|
|
@ -72,8 +72,11 @@ public class DcEventImportantFileServiceImpl implements IDcEventImportantFileSer |
|
|
|
* @return 结果 |
|
|
|
*/ |
|
|
|
@Override |
|
|
|
public int insertDcEventImportantFile(DcEventImportantFile dcEventImportantFile) |
|
|
|
public AjaxResult insertDcEventImportantFile(DcEventImportantFile dcEventImportantFile) |
|
|
|
{ |
|
|
|
if (StringUtils.isEmpty(dcEventImportantFile.getEventId())){ |
|
|
|
return AjaxResult.error("事件id不能为空!"); |
|
|
|
} |
|
|
|
int i = dcEventImportantFileMapper.insertDcEventImportantFile(dcEventImportantFile); |
|
|
|
if (i > 0){ |
|
|
|
if (StringUtils.isNotEmpty(dcEventImportantFile.getStatus()) && "1".equals(dcEventImportantFile.getStatus())) { |
|
|
@ -94,8 +97,9 @@ public class DcEventImportantFileServiceImpl implements IDcEventImportantFileSer |
|
|
|
dcEventProcess.setContext(context); |
|
|
|
dcEventProcessService.insertDcEventProcess(dcEventProcess); |
|
|
|
} |
|
|
|
return AjaxResult.success("新增成功!"); |
|
|
|
} |
|
|
|
return i; |
|
|
|
return AjaxResult.error("新增失败!"); |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
@ -105,8 +109,11 @@ public class DcEventImportantFileServiceImpl implements IDcEventImportantFileSer |
|
|
|
* @return 结果 |
|
|
|
*/ |
|
|
|
@Override |
|
|
|
public int updateDcEventImportantFile(DcEventImportantFile dcEventImportantFile) |
|
|
|
public AjaxResult updateDcEventImportantFile(DcEventImportantFile dcEventImportantFile) |
|
|
|
{ |
|
|
|
if (dcEventImportantFile.getId() == null || StringUtils.isEmpty(dcEventImportantFile.getEventId())){ |
|
|
|
return AjaxResult.error("参数错误!"); |
|
|
|
} |
|
|
|
int i = dcEventImportantFileMapper.updateDcEventImportantFile(dcEventImportantFile); |
|
|
|
if (i > 0){ |
|
|
|
if (StringUtils.isNotEmpty(dcEventImportantFile.getStatus()) && "1".equals(dcEventImportantFile.getStatus())){ |
|
|
@ -126,8 +133,10 @@ public class DcEventImportantFileServiceImpl implements IDcEventImportantFileSer |
|
|
|
dcEventProcess.setContext(context); |
|
|
|
dcEventProcessService.insertDcEventProcess(dcEventProcess); |
|
|
|
} |
|
|
|
return AjaxResult.success("修改成功"); |
|
|
|
|
|
|
|
} |
|
|
|
return i; |
|
|
|
return AjaxResult.error("修改失败"); |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|