BugForProgress.java 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. package edu.nju.algorithm.progress;
  2. import java.util.Date;
  3. /**
  4. * @Author JiaWei Xu
  5. * @Date 2021-01-06 15:56
  6. * @Email xjwhhh233@outlook.com
  7. */
  8. public class BugForProgress {
  9. String id;
  10. String testCaseId;
  11. String testCaseName;
  12. String userId;
  13. String title;
  14. String description;
  15. Date bugCreateTime;
  16. String severity;
  17. String bugPage;
  18. public BugForProgress(){};
  19. public BugForProgress(String id, String testCaseId, String testCaseName, String title, String description) {
  20. this.id = id;
  21. this.testCaseId = testCaseId;
  22. this.testCaseName = testCaseName;
  23. this.title = title;
  24. this.description = description;
  25. }
  26. public BugForProgress(String id, String testCaseId, String testCaseName, String userId, String title, String description, Date bugCreateTime, String severity, String bugPage) {
  27. this.id = id;
  28. this.testCaseId = testCaseId;
  29. this.userId = userId;
  30. this.testCaseName = testCaseName;
  31. this.title = title;
  32. this.description = description;
  33. this.bugCreateTime = bugCreateTime;
  34. this.severity = severity;
  35. this.bugPage = bugPage;
  36. }
  37. public String getId() {
  38. return id;
  39. }
  40. public void setId(String id) {
  41. this.id = id;
  42. }
  43. public String getTestCaseId() {
  44. return testCaseId;
  45. }
  46. public void setTestCaseId(String testCaseId) {
  47. this.testCaseId = testCaseId;
  48. }
  49. public String getTestCaseName() {
  50. return testCaseName;
  51. }
  52. public void setTestCaseName(String testCaseName) {
  53. this.testCaseName = testCaseName;
  54. }
  55. public String getUserId() {
  56. return userId;
  57. }
  58. public void setUserId(String userId) {
  59. this.userId = userId;
  60. }
  61. public String getTitle() {
  62. return title;
  63. }
  64. public void setTitle(String title) {
  65. this.title = title;
  66. }
  67. public String getDescription() {
  68. return description;
  69. }
  70. public void setDescription(String description) {
  71. this.description = description;
  72. }
  73. public Date getBugCreateTime() {
  74. return bugCreateTime;
  75. }
  76. public void setBugCreateTime(Date bugCreateTime) {
  77. this.bugCreateTime = bugCreateTime;
  78. }
  79. public String getSeverity() {
  80. return severity;
  81. }
  82. public void setSeverity(String severity) {
  83. this.severity = severity;
  84. }
  85. public String getBugPage() {
  86. return bugPage;
  87. }
  88. public void setBugPage(String bugPage) {
  89. this.bugPage = bugPage;
  90. }
  91. }