| | |
| | | private Integer proId;//所属项目id |
| | | 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") |
| | |
| | | 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() { |
| | | } |
| | | |
| | |
| | | ", proId=" + proId + |
| | | ", proName='" + proName + '\'' + |
| | | ", testType='" + testType + '\'' + |
| | | ", testCase='" + testCase + '\'' + |
| | | ", testAddress='" + testAddress + '\'' + |
| | | ", startTime=" + startTime + |
| | | ", endTime=" + endTime + |
| | |
| | | ", creator='" + creator + '\'' + |
| | | ", state=" + state + |
| | | ", verifier='" + verifier + '\'' + |
| | | ", planCount=" + planCount + |
| | | ", testCount=" + testCount + |
| | | ", conclusion='" + conclusion + '\'' + |
| | | '}'; |
| | | } |
| | | |
| | |
| | | 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; |
| | | } |
| | | } |