📄 sendway.java
字号:
package org.whatisjava.dang.domain;
public class SendWay implements java.io.Serializable {
private static final long serialVersionUID = 1L;
private Integer id;
private boolean isClose;
private String sendWay;
private String sendDesc;
private double sendFee;
public Integer getId() {
return this.id;
}
public void setId(Integer id) {
this.id = id;
}
public boolean getIsClose() {
return this.isClose;
}
public void setIsClose(boolean isClose) {
this.isClose = isClose;
}
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;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -