📄 tbselldetail.java
字号:
package model;
public class TbSellDetail implements java.io.Serializable {
private Integer id;
private String tbSellMain;
private String spid;
private Double dj;
private Integer sl;
public TbSellDetail() {
}
public TbSellDetail(String tbSellMain, String spid, Double dj, Integer sl) {
this.tbSellMain = tbSellMain;
this.spid = spid;
this.dj = dj;
this.sl = sl;
}
public Integer getId() {
return this.id;
}
public void setId(Integer id) {
this.id = id;
}
public String getTbSellMain() {
return this.tbSellMain;
}
public void setTbSellMain(String tbSellMain) {
this.tbSellMain = tbSellMain;
}
public String getSpid() {
return this.spid;
}
public void setSpid(String spid) {
this.spid = spid;
}
public Double getDj() {
return this.dj;
}
public void setDj(Double dj) {
this.dj = dj;
}
public Integer getSl() {
return this.sl;
}
public void setSl(Integer sl) {
this.sl = sl;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -