📄 orderstatus.java
字号:
/**
*
*/
package com.eshop.vo;
/**
* 订单状态数据库映射
* @author jonson
*
*/
public class OrderStatus extends BaseVo{
private long orderid;
private long linenum ;
private String timestamp;
private String status;
/**
* @return the linenum
*/
public long getLinenum() {
return linenum;
}
/**
* @param linenum the linenum to set
*/
public void setLinenum(long linenum) {
this.linenum = linenum;
}
/**
* @return the orderid
*/
public long getOrderid() {
return orderid;
}
/**
* @param orderid the orderid to set
*/
public void setOrderid(long orderid) {
this.orderid = orderid;
}
/**
* @return the status
*/
public String getStatus() {
return status;
}
/**
* @param status the status to set
*/
public void setStatus(String status) {
this.status = status;
}
/**
* @return the timestamp
*/
public String getTimestamp() {
return timestamp;
}
/**
* @param timestamp the timestamp to set
*/
public void setTimestamp(String timestamp) {
this.timestamp = timestamp;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -