数据库第二次大作业boostore
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

152 lines
3.2 KiB

<!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">&nbsp;package cn.edu.ecnu.stu.bookstore.pojo;
&nbsp;
&nbsp;import lombok.AllArgsConstructor;
&nbsp;import lombok.Data;
&nbsp;import lombok.NoArgsConstructor;
&nbsp;
&nbsp;import java.math.BigDecimal;
&nbsp;import java.util.List;
&nbsp;
<b class="fc">&nbsp;@Data</b>
<b class="fc">&nbsp;@NoArgsConstructor</b>
&nbsp;public class Book {
&nbsp;
<b class="fc">&nbsp; private String bookId;</b>
&nbsp;
<b class="fc">&nbsp; private String storeId;</b>
&nbsp;
<b class="fc">&nbsp; private String title;</b>
&nbsp;
<b class="fc">&nbsp; private String author;</b>
&nbsp;
<b class="fc">&nbsp; private String publisher;</b>
&nbsp;
<b class="fc">&nbsp; private String originalTitle;</b>
&nbsp;
<b class="fc">&nbsp; private String translator;</b>
&nbsp;
<b class="fc">&nbsp; private String pubYear;</b>
&nbsp;
<b class="fc">&nbsp; private Integer pages;</b>
&nbsp;
<b class="fc">&nbsp; private BigDecimal price;</b>
&nbsp;
<b class="fc">&nbsp; private String binding;</b>
&nbsp;
<b class="fc">&nbsp; private String isbn;</b>
&nbsp;
<b class="fc">&nbsp; private Integer stockLevel;</b>
&nbsp;
<b class="fc">&nbsp; private List&lt;String&gt; tags;</b>
&nbsp;
<b class="fc">&nbsp; private List&lt;String&gt; pictures;</b>
&nbsp;
<b class="fc">&nbsp; private String authorIntro;</b>
&nbsp;
<b class="fc">&nbsp; private String bookIntro;</b>
&nbsp;
<b class="fc">&nbsp; private String content;</b>
&nbsp;}
</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>