refactor(用例管理): 用例前后置接口返回caseId

This commit is contained in:
WangXu10 2024-02-26 12:36:36 +08:00 committed by Craftsman
parent d3c02a4264
commit 446346b6ee
2 changed files with 6 additions and 2 deletions

View File

@ -15,7 +15,7 @@ public class FunctionalCaseRelationshipDTO implements Serializable {
@Serial
private static final long serialVersionUID = 1L;
@Schema(description = "id")
@Schema(description = "关联表id")
private String id;
@Schema(description = "用例名称")
@ -33,4 +33,7 @@ public class FunctionalCaseRelationshipDTO implements Serializable {
@Schema(description = "num")
private String num;
@Schema(description = "caseId")
private String caseId;
}

View File

@ -23,7 +23,8 @@
fc.version_id versionId,
pv.`name` versionName,
u.`name` userName,
fc.num
fc.num,
fc.id caseId
FROM
functional_case_relationship_edge fcre
<if test="request.type != null and request.type != ''">