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

📄 sendway.java

📁 模仿当当网基于struts+hierbernate与mysql的商务网站。
💻 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 + -