REQ-3581: 加上上下文

This commit is contained in:
yanglin 2025-02-28 11:27:04 +08:00
parent 9ee22dfc3b
commit 91b619077d

View File

@ -168,8 +168,12 @@ public class OrgManager {
sealPerson.setEssSealId(essSealId); sealPerson.setEssSealId(essSealId);
sealPerson.setPersonId(personId); sealPerson.setPersonId(personId);
sealPerson.setIsAuthorized(YesOrNo.NO); sealPerson.setIsAuthorized(YesOrNo.NO);
try {
essSealPersonDao.save(sealPerson); essSealPersonDao.save(sealPerson);
} }
catch (DuplicateKeyException ignored) {
}
}
@BizTransactional @BizTransactional
public void tryRemoveSealPerson(RemoveSealPersonRequest request) { public void tryRemoveSealPerson(RemoveSealPersonRequest request) {