17 Star 0 Fork 0

If*You/BookShop

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Repository.java 1.88 KB
一键复制 编辑 原始数据 按行查看 历史
李岳润 提交于 2024-02-22 11:28 . 李岳润提交
package com.moju.pojo;
import java.sql.Timestamp;
public class Repository {
private Integer repositoryId;
private Integer bookId;
private String kind;
private Integer count;
private Integer balance;
private Timestamp executeTime;
private String operator;
private Book book;
public Book getBook() {
return book;
}
public void setBook(Book book) {
this.book = book;
}
public Integer getRepositoryId() {
return repositoryId;
}
public void setRepositoryId(Integer repositoryId) {
this.repositoryId = repositoryId;
}
public Integer getBookId() {
return bookId;
}
public void setBookId(Integer bookId) {
this.bookId = bookId;
}
public String getKind() {
return kind;
}
public void setKind(String kind) {
this.kind = kind;
}
public Integer getCount() {
return count;
}
public void setCount(Integer count) {
this.count = count;
}
public Integer getBalance() {
return balance;
}
public void setBalance(Integer balance) {
this.balance = balance;
}
public Timestamp getExecuteTime() {
return executeTime;
}
public void setExecuteTime(Timestamp executeTime) {
this.executeTime = executeTime;
}
public String getOperator() {
return operator;
}
public void setOperator(String operator) {
this.operator = operator;
}
@Override
public String toString() {
return "Repository{" +
"repositoryId=" + repositoryId +
", bookId=" + bookId +
", kind='" + kind + '\'' +
", count=" + count +
", balance=" + balance +
", executeTime=" + executeTime +
", operator='" + operator + '\'' +
'}';
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/GaoYuanze/book-shop.git
git@gitee.com:GaoYuanze/book-shop.git
GaoYuanze
book-shop
BookShop
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385