|
@@ -578,10 +578,14 @@ public class ConceptFacade extends ConceptServiceImpl {
|
|
|
ConceptCommon conceptCommon = conceptCommonFacade.getOne(conceptCommonQe);
|
|
|
if (conceptCommon == null) {
|
|
|
conceptCommon = new ConceptCommon();
|
|
|
+ conceptCommon.setGmtCreate(now);
|
|
|
+ conceptCommon.setCreator(currentUser);
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
BeanUtil.copyProperties(addConceptInfoVO, conceptCommon);
|
|
|
conceptCommon.setConceptId(conceptId);
|
|
|
+ conceptCommon.setGmtModified(now);
|
|
|
+ conceptCommon.setModifier(currentUser);
|
|
|
|
|
|
conceptCommonFacade.saveOrUpdate(conceptCommon);
|
|
|
}
|