?? payway.java
字號:
package cn.com.tarena.ecport.pojo;
import java.util.HashSet;
import java.util.Set;
/**
* <pre>
* 支付方式Pojo
* 此Pojo映射數據庫中的PayWay表
* </pre>
*
* @author zhouyu 2008-1-16
*/
public class PayWay extends BasePojo {
/**
*
*/
private static final long serialVersionUID = 4500920073825040510L;
private Long paywayid;//????
private String paystyle;//????
private Set orderses = new HashSet(0);
// Constructors
/** default constructor */
public PayWay() {
}
public PayWay(Long paywayid) {
this.paywayid = paywayid;
}
/** minimal constructor */
public PayWay(String paystyle) {
this.paystyle = paystyle;
}
/** full constructor */
public PayWay(String paystyle, Set orderses) {
this.paystyle = paystyle;
this.orderses = orderses;
}
// Property accessors
public Long getPaywayid() {
return this.paywayid;
}
public void setPaywayid(Long paywayid) {
this.paywayid = paywayid;
}
public String getPaystyle() {
return this.paystyle;
}
public void setPaystyle(String paystyle) {
this.paystyle = paystyle;
}
public Set getOrderses() {
return this.orderses;
}
public void setOrderses(Set orderses) {
this.orderses = orderses;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -