|
@@ -2087,7 +2087,7 @@ public class TrialSelfInspectionRecordServiceImpl extends BaseServiceImpl<TrialS
|
|
|
}
|
|
|
|
|
|
@Override
|
|
|
- public Boolean saveBaseInfo(TrialSeleInspectionRecordInfoDTO dto) {
|
|
|
+ public Long saveBaseInfo(TrialSeleInspectionRecordInfoDTO dto) {
|
|
|
TrialSelfInspectionRecord record = new TrialSelfInspectionRecord();
|
|
|
BeanUtil.copyProperties(dto, record);
|
|
|
TrialSeleInspectionRecordBaseInfoDTO baseInfo = new TrialSeleInspectionRecordBaseInfoDTO();
|
|
@@ -2120,7 +2120,7 @@ public class TrialSelfInspectionRecordServiceImpl extends BaseServiceImpl<TrialS
|
|
|
//修改项目节点基础信息
|
|
|
jdbcTemplate.update("update u_entrust_info set sample_status=4 where id ='"+dto.getEntrustId()+"'");
|
|
|
}
|
|
|
- return true;
|
|
|
+ return record.getId();
|
|
|
}
|
|
|
|
|
|
|