Merge remote-tracking branch 'origin/upgrade' into upgrade
This commit is contained in:
commit
62872782f2
@ -51,7 +51,11 @@ public class CorrectServiceImpl extends AbstractService implements ICorrectServi
|
||||
String correctId = UUIDUtil.getUUID();
|
||||
Map<String, Object> params = HashMapUtil.objectToMap(correctVO);
|
||||
params.put("correctId", correctId);
|
||||
if(StringUtils.isEmpty(token)) {
|
||||
setSaveInfo(params);
|
||||
}else{
|
||||
setSaveInfo(token, params);
|
||||
}
|
||||
correctDao.save(params);
|
||||
return correctId;
|
||||
}
|
||||
|
@ -59,7 +59,6 @@ public class PetitionServiceImpl extends AbstractService implements IPetitionSer
|
||||
}else{
|
||||
setSaveInfo(token, params);
|
||||
}
|
||||
|
||||
petitionDao.save(params);
|
||||
return petitionId;
|
||||
}
|
||||
|
@ -160,7 +160,11 @@ public class PopulationInfoServiceImpl extends AbstractService implements IPopul
|
||||
}
|
||||
Map<String, Object> params = HashMapUtil.objectToMap(populationInfoVO);
|
||||
params.put("populationInfoId", populationInfoId);
|
||||
if(StringUtils.isEmpty(token)) {
|
||||
setSaveInfo(params);
|
||||
}else{
|
||||
setSaveInfo(token, params);
|
||||
}
|
||||
populationInfoDao.save(params);//
|
||||
return populationInfoId;
|
||||
}
|
||||
|
@ -51,7 +51,11 @@ public class ReleaseServiceImpl extends AbstractService implements IReleaseServi
|
||||
String releaseId = UUIDUtil.getUUID();
|
||||
Map<String, Object> params = HashMapUtil.objectToMap(releaseVO);
|
||||
params.put("releaseId", releaseId);
|
||||
if(StringUtils.isEmpty(token)) {
|
||||
setSaveInfo(params);
|
||||
}else{
|
||||
setSaveInfo(token, params);
|
||||
}
|
||||
releaseDao.save(params);
|
||||
return releaseId;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user