|
@@ -409,7 +409,9 @@ public class KlConceptFacade extends KlConceptServiceImpl {
|
|
|
}
|
|
|
UpdateWrapper<KlConcept> klLibraryUpdate = new UpdateWrapper<>();
|
|
|
klLibraryUpdate.eq("is_deleted", IsDeleteEnum.N.getKey())
|
|
|
- .eq("id", klConceptSatarOrdisaVO.getConceptId()).set("status", status).set("gmt_modified", now);
|
|
|
+ .eq("id", klConceptSatarOrdisaVO.getConceptId())
|
|
|
+ .set("status", status).set("gmt_modified", now)
|
|
|
+ .set("modifier", UserUtils.getCurrentPrincipleID());
|
|
|
return this.update(klLibraryUpdate);
|
|
|
|
|
|
}
|