edu_nju_controller_DataController_getBugDetailByCaseId_BugDetail.html 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>BugDetail</title>
  6. <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/google-code-prettify@1.0.5/bin/prettify.min.css">
  7. <link href="../style.css" rel="stylesheet" />
  8. </head>
  9. <body onload="PR.prettyPrint()">
  10. <pre class="prettyprint lang-java">
  11. public class BugDetail implements Serializable{
  12. private String id; //bug属性
  13. private String bugCategory; //
  14. private String severity; //
  15. private String recurrent; //
  16. private String bugCreateTime; //
  17. private String bugPage; //
  18. private String title; //
  19. private String bugDescription; //
  20. private String imgUrl; //
  21. private int score; //
  22. private String parent; //
  23. private string[] children; //
  24. private String root; //
  25. private int goodNum; //
  26. private string[] goodWorkerId; //
  27. private int badNum; //
  28. private string[] badWorkerId; //
  29. private String testCaseId; //测试用例属性
  30. private String testCaseName; //
  31. private String testCaseFront; //
  32. private String testCaseBehind; //
  33. private String testCaseDescription; //
  34. private String testCaseCreateTime; //
  35. private String reportId; //report属性
  36. private String reportName; //
  37. private String reportCreateTime; //
  38. private String scriptLocation; //
  39. private String reportLocation; //
  40. private String logLocation; //
  41. private String deviceModel; //
  42. private String deviceBrand; //
  43. private String deviceOs; //
  44. private String workerId; //工人属性
  45. private String caseAppName; //众测任务属性
  46. private String casePaperType; //
  47. private String caseTestType; //
  48. private String caseDescription; //
  49. private String caseRequireDoc; //
  50. private String caseTakeId; //原系统中的case_take_id
  51. private String originalCaseId; //与目前系统中的哪个case对应
  52. private String cpSerialNum; //cp系统序列号
  53. public String getId(){
  54. return id;
  55. }
  56. public void setId(String id){
  57. this.id = id;
  58. }
  59. public String getBugCategory(){
  60. return bugCategory;
  61. }
  62. public void setBugCategory(String bugCategory){
  63. this.bugCategory = bugCategory;
  64. }
  65. public String getSeverity(){
  66. return severity;
  67. }
  68. public void setSeverity(String severity){
  69. this.severity = severity;
  70. }
  71. public String getRecurrent(){
  72. return recurrent;
  73. }
  74. public void setRecurrent(String recurrent){
  75. this.recurrent = recurrent;
  76. }
  77. public String getBugCreateTime(){
  78. return bugCreateTime;
  79. }
  80. public void setBugCreateTime(String bugCreateTime){
  81. this.bugCreateTime = bugCreateTime;
  82. }
  83. public String getBugPage(){
  84. return bugPage;
  85. }
  86. public void setBugPage(String bugPage){
  87. this.bugPage = bugPage;
  88. }
  89. public String getTitle(){
  90. return title;
  91. }
  92. public void setTitle(String title){
  93. this.title = title;
  94. }
  95. public String getBugDescription(){
  96. return bugDescription;
  97. }
  98. public void setBugDescription(String bugDescription){
  99. this.bugDescription = bugDescription;
  100. }
  101. public String getImgUrl(){
  102. return imgUrl;
  103. }
  104. public void setImgUrl(String imgUrl){
  105. this.imgUrl = imgUrl;
  106. }
  107. public int getScore(){
  108. return score;
  109. }
  110. public void setScore(int score){
  111. this.score = score;
  112. }
  113. public String getParent(){
  114. return parent;
  115. }
  116. public void setParent(String parent){
  117. this.parent = parent;
  118. }
  119. public string[] getChildren(){
  120. return children;
  121. }
  122. public void setChildren(string[] children){
  123. this.children = children;
  124. }
  125. public String getRoot(){
  126. return root;
  127. }
  128. public void setRoot(String root){
  129. this.root = root;
  130. }
  131. public int getGoodNum(){
  132. return goodNum;
  133. }
  134. public void setGoodNum(int goodNum){
  135. this.goodNum = goodNum;
  136. }
  137. public string[] getGoodWorkerId(){
  138. return goodWorkerId;
  139. }
  140. public void setGoodWorkerId(string[] goodWorkerId){
  141. this.goodWorkerId = goodWorkerId;
  142. }
  143. public int getBadNum(){
  144. return badNum;
  145. }
  146. public void setBadNum(int badNum){
  147. this.badNum = badNum;
  148. }
  149. public string[] getBadWorkerId(){
  150. return badWorkerId;
  151. }
  152. public void setBadWorkerId(string[] badWorkerId){
  153. this.badWorkerId = badWorkerId;
  154. }
  155. public String getTestCaseId(){
  156. return testCaseId;
  157. }
  158. public void setTestCaseId(String testCaseId){
  159. this.testCaseId = testCaseId;
  160. }
  161. public String getTestCaseName(){
  162. return testCaseName;
  163. }
  164. public void setTestCaseName(String testCaseName){
  165. this.testCaseName = testCaseName;
  166. }
  167. public String getTestCaseFront(){
  168. return testCaseFront;
  169. }
  170. public void setTestCaseFront(String testCaseFront){
  171. this.testCaseFront = testCaseFront;
  172. }
  173. public String getTestCaseBehind(){
  174. return testCaseBehind;
  175. }
  176. public void setTestCaseBehind(String testCaseBehind){
  177. this.testCaseBehind = testCaseBehind;
  178. }
  179. public String getTestCaseDescription(){
  180. return testCaseDescription;
  181. }
  182. public void setTestCaseDescription(String testCaseDescription){
  183. this.testCaseDescription = testCaseDescription;
  184. }
  185. public String getTestCaseCreateTime(){
  186. return testCaseCreateTime;
  187. }
  188. public void setTestCaseCreateTime(String testCaseCreateTime){
  189. this.testCaseCreateTime = testCaseCreateTime;
  190. }
  191. public String getReportId(){
  192. return reportId;
  193. }
  194. public void setReportId(String reportId){
  195. this.reportId = reportId;
  196. }
  197. public String getReportName(){
  198. return reportName;
  199. }
  200. public void setReportName(String reportName){
  201. this.reportName = reportName;
  202. }
  203. public String getReportCreateTime(){
  204. return reportCreateTime;
  205. }
  206. public void setReportCreateTime(String reportCreateTime){
  207. this.reportCreateTime = reportCreateTime;
  208. }
  209. public String getScriptLocation(){
  210. return scriptLocation;
  211. }
  212. public void setScriptLocation(String scriptLocation){
  213. this.scriptLocation = scriptLocation;
  214. }
  215. public String getReportLocation(){
  216. return reportLocation;
  217. }
  218. public void setReportLocation(String reportLocation){
  219. this.reportLocation = reportLocation;
  220. }
  221. public String getLogLocation(){
  222. return logLocation;
  223. }
  224. public void setLogLocation(String logLocation){
  225. this.logLocation = logLocation;
  226. }
  227. public String getDeviceModel(){
  228. return deviceModel;
  229. }
  230. public void setDeviceModel(String deviceModel){
  231. this.deviceModel = deviceModel;
  232. }
  233. public String getDeviceBrand(){
  234. return deviceBrand;
  235. }
  236. public void setDeviceBrand(String deviceBrand){
  237. this.deviceBrand = deviceBrand;
  238. }
  239. public String getDeviceOs(){
  240. return deviceOs;
  241. }
  242. public void setDeviceOs(String deviceOs){
  243. this.deviceOs = deviceOs;
  244. }
  245. public String getWorkerId(){
  246. return workerId;
  247. }
  248. public void setWorkerId(String workerId){
  249. this.workerId = workerId;
  250. }
  251. public String getCaseAppName(){
  252. return caseAppName;
  253. }
  254. public void setCaseAppName(String caseAppName){
  255. this.caseAppName = caseAppName;
  256. }
  257. public String getCasePaperType(){
  258. return casePaperType;
  259. }
  260. public void setCasePaperType(String casePaperType){
  261. this.casePaperType = casePaperType;
  262. }
  263. public String getCaseTestType(){
  264. return caseTestType;
  265. }
  266. public void setCaseTestType(String caseTestType){
  267. this.caseTestType = caseTestType;
  268. }
  269. public String getCaseDescription(){
  270. return caseDescription;
  271. }
  272. public void setCaseDescription(String caseDescription){
  273. this.caseDescription = caseDescription;
  274. }
  275. public String getCaseRequireDoc(){
  276. return caseRequireDoc;
  277. }
  278. public void setCaseRequireDoc(String caseRequireDoc){
  279. this.caseRequireDoc = caseRequireDoc;
  280. }
  281. public String getCaseTakeId(){
  282. return caseTakeId;
  283. }
  284. public void setCaseTakeId(String caseTakeId){
  285. this.caseTakeId = caseTakeId;
  286. }
  287. public String getOriginalCaseId(){
  288. return originalCaseId;
  289. }
  290. public void setOriginalCaseId(String originalCaseId){
  291. this.originalCaseId = originalCaseId;
  292. }
  293. public String getCpSerialNum(){
  294. return cpSerialNum;
  295. }
  296. public void setCpSerialNum(String cpSerialNum){
  297. this.cpSerialNum = cpSerialNum;
  298. }
  299. }
  300. </pre>
  301. <script src="https://cdn.jsdelivr.net/npm/google-code-prettify@1.0.5/bin/prettify.min.js"></script>
  302. </body>
  303. </html>