数据库第二次大作业boostore
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

152 Zeilen
3.2 KiB

vor 11 Monaten
  1. <!DOCTYPE html>
  2. <html id="htmlId">
  3. <head>
  4. <title>Coverage Report > Book</title>
  5. <style type="text/css">
  6. @import "../../css/coverage.css";
  7. @import "../../css/idea.min.css";
  8. </style>
  9. <script type="text/javascript" src="../../js/highlight.min.js"></script>
  10. <script type="text/javascript" src="../../js/highlightjs-line-numbers.min.js"></script>
  11. </head>
  12. <body>
  13. <div class="content">
  14. <div class="breadCrumbs">
  15. Current scope: <a href="../../index.html">all classes</a>
  16. <span class="separator">|</span>
  17. <a href="../index.html">cn.edu.ecnu.stu.bookstore.pojo</a>
  18. </div>
  19. <h1>Coverage Summary for Class: Book (cn.edu.ecnu.stu.bookstore.pojo)</h1>
  20. <table class="coverageStats">
  21. <tr>
  22. <th class="name">Class</th>
  23. <th class="coverageStat
  24. ">
  25. Class, %
  26. </th>
  27. <th class="coverageStat
  28. ">
  29. Method, %
  30. </th>
  31. <th class="coverageStat
  32. ">
  33. Line, %
  34. </th>
  35. </tr>
  36. <tr>
  37. <td class="name">Book</td>
  38. <td class="coverageStat">
  39. <span class="percent">
  40. 100%
  41. </span>
  42. <span class="absValue">
  43. (1/1)
  44. </span>
  45. </td>
  46. <td class="coverageStat">
  47. <span class="percent">
  48. 100%
  49. </span>
  50. <span class="absValue">
  51. (20/20)
  52. </span>
  53. </td>
  54. <td class="coverageStat">
  55. <span class="percent">
  56. 100%
  57. </span>
  58. <span class="absValue">
  59. (20/20)
  60. </span>
  61. </td>
  62. </tr>
  63. </table>
  64. <br/>
  65. <br/>
  66. <pre>
  67. <code class="sourceCode" id="sourceCode">&nbsp;package cn.edu.ecnu.stu.bookstore.pojo;
  68. &nbsp;
  69. &nbsp;import lombok.AllArgsConstructor;
  70. &nbsp;import lombok.Data;
  71. &nbsp;import lombok.NoArgsConstructor;
  72. &nbsp;
  73. &nbsp;import java.math.BigDecimal;
  74. &nbsp;import java.util.List;
  75. &nbsp;
  76. <b class="fc">&nbsp;@Data</b>
  77. <b class="fc">&nbsp;@NoArgsConstructor</b>
  78. &nbsp;public class Book {
  79. &nbsp;
  80. <b class="fc">&nbsp; private String bookId;</b>
  81. &nbsp;
  82. <b class="fc">&nbsp; private String storeId;</b>
  83. &nbsp;
  84. <b class="fc">&nbsp; private String title;</b>
  85. &nbsp;
  86. <b class="fc">&nbsp; private String author;</b>
  87. &nbsp;
  88. <b class="fc">&nbsp; private String publisher;</b>
  89. &nbsp;
  90. <b class="fc">&nbsp; private String originalTitle;</b>
  91. &nbsp;
  92. <b class="fc">&nbsp; private String translator;</b>
  93. &nbsp;
  94. <b class="fc">&nbsp; private String pubYear;</b>
  95. &nbsp;
  96. <b class="fc">&nbsp; private Integer pages;</b>
  97. &nbsp;
  98. <b class="fc">&nbsp; private BigDecimal price;</b>
  99. &nbsp;
  100. <b class="fc">&nbsp; private String binding;</b>
  101. &nbsp;
  102. <b class="fc">&nbsp; private String isbn;</b>
  103. &nbsp;
  104. <b class="fc">&nbsp; private Integer stockLevel;</b>
  105. &nbsp;
  106. <b class="fc">&nbsp; private List&lt;String&gt; tags;</b>
  107. &nbsp;
  108. <b class="fc">&nbsp; private List&lt;String&gt; pictures;</b>
  109. &nbsp;
  110. <b class="fc">&nbsp; private String authorIntro;</b>
  111. &nbsp;
  112. <b class="fc">&nbsp; private String bookIntro;</b>
  113. &nbsp;
  114. <b class="fc">&nbsp; private String content;</b>
  115. &nbsp;}
  116. </code>
  117. </pre>
  118. </div>
  119. <script type="text/javascript">
  120. (function() {
  121. var msie = false, msie9 = false;
  122. /*@cc_on
  123. msie = true;
  124. @if (@_jscript_version >= 9)
  125. msie9 = true;
  126. @end
  127. @*/
  128. if (!msie || msie && msie9) {
  129. hljs.highlightAll()
  130. hljs.initLineNumbersOnLoad();
  131. }
  132. })();
  133. </script>
  134. <div class="footer">
  135. <div style="float:right;">generated on 2023-12-12 18:32</div>
  136. </div>
  137. </body>
  138. </html>