📄 sendway.java
字号:
package tarena.entity;
import java.util.HashSet;
import java.util.Set;
/**
* Sendway entity.
*
* @author MyEclipse Persistence Tools
*/
public class Sendway implements java.io.Serializable {
// Fields
private Integer id;
private Byte isclose;
private String sendname;
private String senddesc;
private Double basefee;
private String arrivaldate;
private Set orderses = new HashSet(0);
// Constructors
/** default constructor */
public Sendway() {
}
/** minimal constructor */
public Sendway(Byte isclose, String sendname, Double basefee) {
this.isclose = isclose;
this.sendname = sendname;
this.basefee = basefee;
}
/** full constructor */
public Sendway(Byte isclose, String sendname, String senddesc,
Double basefee, String arrivaldate, Set orderses) {
this.isclose = isclose;
this.sendname = sendname;
this.senddesc = senddesc;
this.basefee = basefee;
this.arrivaldate = arrivaldate;
this.orderses = orderses;
}
// Property accessors
public Integer getId() {
return this.id;
}
public void setId(Integer id) {
this.id = id;
}
public Byte getIsclose() {
return this.isclose;
}
public void setIsclose(Byte isclose) {
this.isclose = isclose;
}
public String getSendname() {
return this.sendname;
}
public void setSendname(String sendname) {
this.sendname = sendname;
}
public String getSenddesc() {
return this.senddesc;
}
public void setSenddesc(String senddesc) {
this.senddesc = senddesc;
}
public Double getBasefee() {
return this.basefee;
}
public void setBasefee(Double basefee) {
this.basefee = basefee;
}
public String getArrivaldate() {
return this.arrivaldate;
}
public void setArrivaldate(String arrivaldate) {
this.arrivaldate = arrivaldate;
}
public Set getOrderses() {
return this.orderses;
}
public void setOrderses(Set orderses) {
this.orderses = orderses;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -