📄 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 + -