refactor(功能用例): 用例管理缺陷弹窗列表返回num
This commit is contained in:
parent
899b80a1df
commit
eaf7160ee5
|
@ -19,6 +19,9 @@ public class BugProviderDTO implements Serializable {
|
|||
@Schema(description = "id")
|
||||
private String id;
|
||||
|
||||
@Schema(description = "num")
|
||||
private String num;
|
||||
|
||||
@Schema(description = "缺陷id")
|
||||
private String bugId;
|
||||
|
||||
|
|
|
@ -100,6 +100,7 @@
|
|||
<select id="listByProviderRequest" resultMap="BugProviderDTO">
|
||||
SELECT
|
||||
b.id as id,
|
||||
b.num as num,
|
||||
b.title name,
|
||||
b.handle_user handleUser,
|
||||
b.`status` as status,
|
||||
|
|
|
@ -70,6 +70,7 @@
|
|||
SELECT
|
||||
brc.id as id,
|
||||
brc.bug_id bugId,
|
||||
b.num as num,
|
||||
b.title as name,
|
||||
b.handle_user handleUser,
|
||||
b.`status`,
|
||||
|
|
Loading…
Reference in New Issue