com.tlgen.orm.domain.Book Maven / Gradle / Ivy
The newest version!
package com.tlgen.orm.domain;
import com.tlgen.orm.annotation.Id;
import java.math.BigDecimal;
public class Book {
@Id
private String id;
private String name;
private String author;
private BigDecimal price;
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getAuthor() {
return author;
}
public void setAuthor(String author) {
this.author = author;
}
public BigDecimal getPrice() {
return price;
}
public void setPrice(BigDecimal price) {
this.price = price;
}
}