refactor(用例管理): 用例前后置接口返回caseId
This commit is contained in:
parent
d3c02a4264
commit
446346b6ee
|
@ -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;
|
||||
|
||||
}
|
||||
|
|
|
@ -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 != ''">
|
||||
|
|
Loading…
Reference in New Issue