|
|
-
-
-
- <!DOCTYPE html>
- <html id="htmlId">
- <head>
- <title>Coverage Report > Book</title>
- <style type="text/css">
- @import "../../css/coverage.css";
- @import "../../css/idea.min.css";
- </style>
- <script type="text/javascript" src="../../js/highlight.min.js"></script>
- <script type="text/javascript" src="../../js/highlightjs-line-numbers.min.js"></script>
- </head>
-
- <body>
- <div class="content">
- <div class="breadCrumbs">
- Current scope: <a href="../../index.html">all classes</a>
- <span class="separator">|</span>
- <a href="../index.html">cn.edu.ecnu.stu.bookstore.pojo</a>
- </div>
-
- <h1>Coverage Summary for Class: Book (cn.edu.ecnu.stu.bookstore.pojo)</h1>
-
- <table class="coverageStats">
- <tr>
- <th class="name">Class</th>
- <th class="coverageStat
- ">
- Class, %
- </th>
- <th class="coverageStat
- ">
- Method, %
- </th>
- <th class="coverageStat
- ">
- Line, %
- </th>
- </tr>
- <tr>
- <td class="name">Book</td>
- <td class="coverageStat">
- <span class="percent">
- 100%
- </span>
- <span class="absValue">
- (1/1)
- </span>
- </td>
- <td class="coverageStat">
- <span class="percent">
- 100%
- </span>
- <span class="absValue">
- (20/20)
- </span>
- </td>
- <td class="coverageStat">
- <span class="percent">
- 100%
- </span>
- <span class="absValue">
- (20/20)
- </span>
- </td>
- </tr>
-
- </table>
-
- <br/>
- <br/>
-
-
- <pre>
- <code class="sourceCode" id="sourceCode"> package cn.edu.ecnu.stu.bookstore.pojo;
-
- import lombok.AllArgsConstructor;
- import lombok.Data;
- import lombok.NoArgsConstructor;
-
- import java.math.BigDecimal;
- import java.util.List;
-
- <b class="fc"> @Data</b>
- <b class="fc"> @NoArgsConstructor</b>
- public class Book {
-
- <b class="fc"> private String bookId;</b>
-
- <b class="fc"> private String storeId;</b>
-
- <b class="fc"> private String title;</b>
-
- <b class="fc"> private String author;</b>
-
- <b class="fc"> private String publisher;</b>
-
- <b class="fc"> private String originalTitle;</b>
-
- <b class="fc"> private String translator;</b>
-
- <b class="fc"> private String pubYear;</b>
-
- <b class="fc"> private Integer pages;</b>
-
- <b class="fc"> private BigDecimal price;</b>
-
- <b class="fc"> private String binding;</b>
-
- <b class="fc"> private String isbn;</b>
-
- <b class="fc"> private Integer stockLevel;</b>
-
- <b class="fc"> private List<String> tags;</b>
-
- <b class="fc"> private List<String> pictures;</b>
-
- <b class="fc"> private String authorIntro;</b>
-
- <b class="fc"> private String bookIntro;</b>
-
- <b class="fc"> private String content;</b>
- }
- </code>
- </pre>
- </div>
-
- <script type="text/javascript">
- (function() {
- var msie = false, msie9 = false;
- /*@cc_on
- msie = true;
- @if (@_jscript_version >= 9)
- msie9 = true;
- @end
- @*/
-
- if (!msie || msie && msie9) {
- hljs.highlightAll()
- hljs.initLineNumbersOnLoad();
- }
- })();
- </script>
-
- <div class="footer">
-
- <div style="float:right;">generated on 2023-12-12 18:32</div>
- </div>
- </body>
- </html>
|