fix: 生产自定义字段报空指针 (#4307)
Co-authored-by: chenjianxing <jianxing.chen@fit2cloud.com>
This commit is contained in:
parent
3537b54bdd
commit
02021c9476
|
@ -330,7 +330,7 @@ public class ApiAutomationService {
|
|||
|
||||
private int getNextNum(String projectId) {
|
||||
ApiScenario apiScenario = extApiScenarioMapper.getNextNum(projectId);
|
||||
if (apiScenario == null) {
|
||||
if (apiScenario == null || apiScenario.getNum() == null) {
|
||||
return 100001;
|
||||
} else {
|
||||
return Optional.of(apiScenario.getNum() + 1).orElse(100001);
|
||||
|
|
|
@ -361,7 +361,7 @@ public class ApiDefinitionService {
|
|||
|
||||
private int getNextNum(String projectId) {
|
||||
ApiDefinition apiDefinition = extApiDefinitionMapper.getNextNum(projectId);
|
||||
if (apiDefinition == null) {
|
||||
if (apiDefinition == null || apiDefinition.getNum() == null) {
|
||||
return 100001;
|
||||
} else {
|
||||
return Optional.of(apiDefinition.getNum() + 1).orElse(100001);
|
||||
|
|
|
@ -64,7 +64,7 @@ public class HistoricalDataUpgradeService {
|
|||
|
||||
private int getNextNum(String projectId) {
|
||||
ApiScenario apiScenario = extApiScenarioMapper.getNextNum(projectId);
|
||||
if (apiScenario == null) {
|
||||
if (apiScenario == null || apiScenario.getNum() == null) {
|
||||
return 100001;
|
||||
} else {
|
||||
return Optional.of(apiScenario.getNum() + 1).orElse(100001);
|
||||
|
|
|
@ -589,7 +589,7 @@ public class PerformanceTestService {
|
|||
|
||||
private int getNextNum(String projectId) {
|
||||
LoadTest loadTest = extLoadTestMapper.getNextNum(projectId);
|
||||
if (loadTest == null) {
|
||||
if (loadTest == null || loadTest.getNum() == null) {
|
||||
return 100001;
|
||||
} else {
|
||||
return Optional.of(loadTest.getNum() + 1).orElse(100001);
|
||||
|
|
|
@ -984,7 +984,7 @@ public class TestCaseService {
|
|||
*/
|
||||
private int getNextNum(String projectId) {
|
||||
TestCase testCase = extTestCaseMapper.getMaxNumByProjectId(projectId);
|
||||
if (testCase == null) {
|
||||
if (testCase == null || testCase.getNum() == null) {
|
||||
return 100001;
|
||||
} else {
|
||||
return Optional.ofNullable(testCase.getNum() + 1).orElse(100001);
|
||||
|
|
Loading…
Reference in New Issue