123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- package edu.nju.algorithm.progress;
- import java.util.Date;
- /**
- * @Author JiaWei Xu
- * @Date 2021-01-06 15:56
- * @Email xjwhhh233@outlook.com
- */
- public class BugForProgress {
- String id;
- String testCaseId;
- String testCaseName;
- String userId;
- String title;
- String description;
- Date bugCreateTime;
- String severity;
- String bugPage;
- public BugForProgress(){};
- public BugForProgress(String id, String testCaseId, String testCaseName, String title, String description) {
- this.id = id;
- this.testCaseId = testCaseId;
- this.testCaseName = testCaseName;
- this.title = title;
- this.description = description;
- }
- public BugForProgress(String id, String testCaseId, String testCaseName, String userId, String title, String description, Date bugCreateTime, String severity, String bugPage) {
- this.id = id;
- this.testCaseId = testCaseId;
- this.userId = userId;
- this.testCaseName = testCaseName;
- this.title = title;
- this.description = description;
- this.bugCreateTime = bugCreateTime;
- this.severity = severity;
- this.bugPage = bugPage;
- }
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getTestCaseId() {
- return testCaseId;
- }
- public void setTestCaseId(String testCaseId) {
- this.testCaseId = testCaseId;
- }
- public String getTestCaseName() {
- return testCaseName;
- }
- public void setTestCaseName(String testCaseName) {
- this.testCaseName = testCaseName;
- }
- public String getUserId() {
- return userId;
- }
- public void setUserId(String userId) {
- this.userId = userId;
- }
- public String getTitle() {
- return title;
- }
- public void setTitle(String title) {
- this.title = title;
- }
- public String getDescription() {
- return description;
- }
- public void setDescription(String description) {
- this.description = description;
- }
- public Date getBugCreateTime() {
- return bugCreateTime;
- }
- public void setBugCreateTime(Date bugCreateTime) {
- this.bugCreateTime = bugCreateTime;
- }
- public String getSeverity() {
- return severity;
- }
- public void setSeverity(String severity) {
- this.severity = severity;
- }
- public String getBugPage() {
- return bugPage;
- }
- public void setBugPage(String bugPage) {
- this.bugPage = bugPage;
- }
- }
|