From 21f8a77b5d0269c641e2307dc979a6ec09cb7d59 Mon Sep 17 00:00:00 2001 From: whyczh <hzjl@qq.com> Date: 星期五, 02 四月 2021 17:04:35 +0800 Subject: [PATCH] 更新试验计划实体类 --- src/main/java/com/whyc/pojo/TestPlan.java | 40 ++++++++++++++++++++++++++++++++++++++++ 1 files changed, 40 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/whyc/pojo/TestPlan.java b/src/main/java/com/whyc/pojo/TestPlan.java index 32b4fdd..af41ca3 100644 --- a/src/main/java/com/whyc/pojo/TestPlan.java +++ b/src/main/java/com/whyc/pojo/TestPlan.java @@ -21,6 +21,7 @@ private Integer proId;//鎵�灞為」鐩甶d private String proName;//鎵�灞為」鐩悕绉� private String testType;//璇曢獙绫诲埆锛氭櫘閫� + private String testCase;//璇曢獙鐢ㄤ緥锛氳瘯楠岀敤渚�1锛岃瘯楠岀敤渚�2 private String testAddress;//璇曢獙鍦哄湴锛�1鍙峰疄楠屽 @JsonFormat(timezone = "Asia/Shanghai",pattern = "yyyy-MM-dd HH:mm:ss") @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") @@ -39,6 +40,10 @@ private String creator;//鍒涘缓浜� private Integer state;//鐘舵�侊細0:鏈紑濮嬶紝1:杩涜涓紝2:宸茬粨鏉�,3:浣滃簾锛涘鏍哥姸鎬侊細2锛堝凡缁撴潫鏃讹級:鏈鏍革紝6:宸插鏍革紝8:宸插綊妗� private String verifier;//瀹℃牳浜� + private Integer planCount;//璁″垝娆℃暟 + private Integer testCount;//瀹為檯娆℃暟 + private String conclusion;//璇曢獙缁撹 + public TestPlan() { } @@ -50,6 +55,7 @@ ", proId=" + proId + ", proName='" + proName + '\'' + ", testType='" + testType + '\'' + + ", testCase='" + testCase + '\'' + ", testAddress='" + testAddress + '\'' + ", startTime=" + startTime + ", endTime=" + endTime + @@ -62,6 +68,9 @@ ", creator='" + creator + '\'' + ", state=" + state + ", verifier='" + verifier + '\'' + + ", planCount=" + planCount + + ", testCount=" + testCount + + ", conclusion='" + conclusion + '\'' + '}'; } @@ -200,4 +209,35 @@ public void setVerifier(String verifier) { this.verifier = verifier; } + public String getTestCase() { + return testCase; + } + + public void setTestCase(String testCase) { + this.testCase = testCase; + } + + public Integer getPlanCount() { + return planCount; + } + + public void setPlanCount(Integer planCount) { + this.planCount = planCount; + } + + public Integer getTestCount() { + return testCount; + } + + public void setTestCount(Integer testCount) { + this.testCount = testCount; + } + + public String getConclusion() { + return conclusion; + } + + public void setConclusion(String conclusion) { + this.conclusion = conclusion; + } } -- Gitblit v1.9.1