📄 sendway.java
字号:
package org.whatisjava.dang.domain;
public class SendWay implements java.io.Serializable {
private static final long serialVersionUID = 5296083146525779244L;
private Integer id;
private boolean closed;
private String sendWay;
private String sendDesc;
private Double sendFee;
// Constructors
/** default constructor */
public SendWay() {
}
/** minimal constructor */
public SendWay(String sendWay, Double sendFee) {
this.sendWay = sendWay;
this.sendFee = sendFee;
}
// Property accessors
public Integer getId() {
return this.id;
}
public void setId(Integer id) {
this.id = id;
}
public String getSendWay() {
return this.sendWay;
}
public void setSendWay(String sendWay) {
this.sendWay = sendWay;
}
public String getSendDesc() {
return this.sendDesc;
}
public void setSendDesc(String sendDesc) {
this.sendDesc = sendDesc;
}
public Double getSendFee() {
return this.sendFee;
}
public void setSendFee(Double sendFee) {
this.sendFee = sendFee;
}
public boolean isClosed() {
return closed;
}
public void setClosed(boolean closed) {
this.closed = closed;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -