orderstatus.java
来自「使用jsp+Servlet,采用MVC模式,实现了一典型小型电子商务网站的全过程」· Java 代码 · 共 67 行
JAVA
67 行
/**
*
*/
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 + =
减小字号Ctrl + -
显示快捷键?