|
@@ -18,6 +18,7 @@ import com.fdkankan.manage.vo.request.CaseNumType;
|
|
|
import com.fdkankan.manage.vo.request.CaseParam;
|
|
|
import com.fdkankan.manage.vo.response.SceneAuthVo;
|
|
|
import com.fdkankan.manage.vo.response.UserAuthSceneVo;
|
|
|
+import lombok.extern.slf4j.Slf4j;
|
|
|
import org.apache.commons.lang3.StringUtils;
|
|
|
import org.bouncycastle.jcajce.provider.asymmetric.rsa.AlgorithmParametersSpi;
|
|
|
import org.springframework.beans.BeanUtils;
|
|
@@ -37,6 +38,7 @@ import java.util.stream.Collectors;
|
|
|
*/
|
|
|
@Service
|
|
|
@DS("db2")
|
|
|
+@Slf4j
|
|
|
public class CaseServiceImpl extends ServiceImpl<ICaseMapper, Case> implements ICaseService {
|
|
|
|
|
|
@Autowired
|
|
@@ -132,6 +134,7 @@ public class CaseServiceImpl extends ServiceImpl<ICaseMapper, Case> implements I
|
|
|
}catch (BusinessException e){
|
|
|
throw e;
|
|
|
}catch (Exception e){
|
|
|
+ log.info("error:{}",e);
|
|
|
throw new BusinessException(ResultCode.SYSTEM_ERROR);
|
|
|
}
|
|
|
|