📄 payinfo.java
字号:
/**
*
*/
package com.eshop.vo;
/**
* 付款信息
* @author jonson
*
*/
public class PayInfo extends BaseVo{
private long orderid;
private String paytype;
private long isfinished;
private String transactiondate;
private long creditcardinfo;
private CreditCardInfo creditCardInfo;
/**
* @return the creditCardInfo
*/
public CreditCardInfo getCreditCardInfo() {
return creditCardInfo;
}
/**
* @param creditCardInfo the creditCardInfo to set
*/
public void setCreditCardInfo(CreditCardInfo creditCardInfo) {
this.creditCardInfo = creditCardInfo;
}
/**
* @return the creditcardinfo
*/
public long getCreditcardinfo() {
return creditcardinfo;
}
/**
* @param creditcardinfo the creditcardinfo to set
*/
public void setCreditcardinfo(long creditcardinfo) {
this.creditcardinfo = creditcardinfo;
}
/**
* @return the isfinished
*/
public long getIsfinished() {
return isfinished;
}
/**
* @param isfinished the isfinished to set
*/
public void setIsfinished(long isfinished) {
this.isfinished = isfinished;
}
/**
* @return the orderid
*/
public long getOrderid() {
return orderid;
}
/**
* @param orderid the orderid to set
*/
public void setOrderid(long orderid) {
this.orderid = orderid;
}
/**
* @return the paytype
*/
public String getPaytype() {
return paytype;
}
/**
* @param paytype the paytype to set
*/
public void setPaytype(String paytype) {
this.paytype = paytype;
}
/**
* @return the transactiondate
*/
public String getTransactiondate() {
return transactiondate;
}
/**
* @param transactiondate the transactiondate to set
*/
public void setTransactiondate(String transactiondate) {
this.transactiondate = transactiondate;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -