|
|
@@ -43,7 +43,7 @@ import java.util.*;
|
|
|
import java.util.stream.Collectors;
|
|
|
|
|
|
import static cn.iocoder.yudao.framework.common.exception.util.ServiceExceptionUtil.exception;
|
|
|
-import static cn.iocoder.yudao.module.bpm.enums.ErrorCodeConstants.OA_OUT_NOT_EXISTS;
|
|
|
+import static cn.iocoder.yudao.module.bpm.enums.ErrorCodeConstants.OA_STAMP_NOT_EXISTS;
|
|
|
|
|
|
/**
|
|
|
* 用印流程信息 Service 实现类
|
|
|
@@ -658,7 +658,7 @@ public class OaStampServiceImpl implements OaStampService {
|
|
|
private OaStampDO validateOaStampExists(Long id) {
|
|
|
OaStampDO oaStampDO = oaStampMapper.selectById(id);
|
|
|
if (oaStampDO == null) {
|
|
|
- throw exception(OA_OUT_NOT_EXISTS);
|
|
|
+ throw exception(OA_STAMP_NOT_EXISTS);
|
|
|
}
|
|
|
return oaStampDO;
|
|
|
}
|