📄 offers.java
字号:
package domain;
import java.io.Serializable;
import java.sql.Date;
public class Offers implements Serializable{
private int offersid;
private String title;
private int productsid;
private String content ;
private Date post_time;
private Date end_time;
private String email;
private int amount;
private int inamount;
private int outamount;
private String deliver;
private String payment;
private double price;
private int hits;
private String remark;
private int trade;
private long time;
private String state;
private String productstitle;
private String photo;
public int getOffersid() {
return offersid;
}
public void setOffersid(int offersid) {
this.offersid = offersid;
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public int getProductsid() {
return productsid;
}
public void setProductsid(int productsid) {
this.productsid = productsid;
}
public String getContent() {
return content;
}
public void setContent(String content) {
this.content = content;
}
public Date getPost_time() {
return post_time;
}
public void setPost_time(Date post_time) {
this.post_time = post_time;
}
public Date getEnd_time() {
return end_time;
}
public void setEnd_time(Date end_time) {
this.end_time = end_time;
}
public String getDeliver() {
return deliver;
}
public void setDeliver(String deliver) {
this.deliver = deliver;
}
public String getPayment() {
return payment;
}
public void setPayment(String payment) {
this.payment = payment;
}
public double getPrice() {
return price;
}
public void setPrice(double price) {
this.price = price;
}
public int getHits() {
return hits;
}
public void setHits(int hits) {
this.hits = hits;
}
public String getRemark() {
return remark;
}
public void setRemark(String remark) {
this.remark = remark;
}
public int getTrade() {
return trade;
}
public void setTrade(int trade) {
this.trade = trade;
}
public long getTime() {
return time;
}
public void setTime(long time) {
this.time = time;
}
public int getInamount() {
return inamount;
}
public void setInamount(int inamount) {
this.inamount = inamount;
}
public int getOutamount() {
return outamount;
}
public void setOutamount(int outamount) {
this.outamount = outamount;
}
public int getAmount() {
return amount;
}
public void setAmount(int amount) {
this.amount = amount;
}
public String getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
public String getState() {
return state;
}
public void setState(String state) {
this.state = state;
}
public String getProductstitle() {
return productstitle;
}
public void setProductstitle(String productstitle) {
this.productstitle = productstitle;
}
public String getPhoto() {
return photo;
}
public void setPhoto(String photo) {
this.photo = photo;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -