⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 sendway.java

📁 达内网上购物系统
💻 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 + -