当前仓库属于关闭状态,部分功能使用受限,详情请查阅 仓库状态说明
2 Star 1 Fork 0

水不要鱼/EasyMySQL
关闭

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Book.java 1.22 KB
一键复制 编辑 原始数据 按行查看 历史
水不要鱼 提交于 2018-04-26 23:37 . 2018-4-26:一次小更新
package com.fish;
// test class
import annotations.Column;
import annotations.Table;
/**
* book 实体类
* @author Fish
* */
@Table("book")
public class Book
{
@Column("id")
private Integer id = null;
//@Column("name")
private String name = null;
//@Column("price")
private Integer price = null;
public Book()
{}
public Book(String name, Integer price)
{
this.name = name;
this.price = price;
}
public Book(Integer id, String name, Integer price)
{
this.id = id;
this.name = name;
this.price = price;
}
public Integer getId()
{
return id;
}
public void setId(Integer id)
{
this.id = id;
}
public String getName()
{
return name;
}
public void setName(String name)
{
this.name = name;
}
public Integer getPrice()
{
return price;
}
public void setPrice(Integer price)
{
this.price = price;
}
@Override
public String toString()
{
return "com.fish.Book{" +
"id=" + id +
", name='" + name + '\'' +
", price=" + price +
'}';
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/FishGoddess/EasyMySQL.git
git@gitee.com:FishGoddess/EasyMySQL.git
FishGoddess
EasyMySQL
EasyMySQL
maven

搜索帮助