sendway.java
来自「达内网上购物系统」· Java 代码 · 共 52 行
JAVA
52 行
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 + =
减小字号Ctrl + -
显示快捷键?