📄 vieworderform.java
字号:
/**
*
*/
package com.eshop.form;
/**
* 显示订单FORM
* @author jonson
*
*/
public class ViewOrderForm {
private long orderid;
private String userid;
private String datetime;
private String shipaddr1;
private String shipaddr2;
private String shipcity;
private String shipstate;
private String shipzip;
private String shipcountry;
private String shiptoname;
private String courier;
private float totalprice;
private long linenum ;
private String timestamp;
private String status;
private String paytype;
private long isfinished;
private String transactiondate;
private long creditcardinfo;
private long id;//编号,主键
private String creditcard;//信用卡卡号
private String exprdate;//有效期
private String cardtype;//信用卡类型
private String billaddr1;//帐单地址1
private String billaddr2;// 帐单地址2
private String billcity;//城市
private String billstate;//省,洲
private String billzip;//邮政编码
private String billcountry;//国家或地区
private String billtoname;//收单人
private String itemid;//项目id
private long quantity;//数量
private float unitprice;//单价
/**
* @return the billaddr1
*/
public String getBilladdr1() {
return billaddr1;
}
/**
* @param billaddr1 the billaddr1 to set
*/
public void setBilladdr1(String billaddr1) {
this.billaddr1 = billaddr1;
}
/**
* @return the billaddr2
*/
public String getBilladdr2() {
return billaddr2;
}
/**
* @param billaddr2 the billaddr2 to set
*/
public void setBilladdr2(String billaddr2) {
this.billaddr2 = billaddr2;
}
/**
* @return the billcity
*/
public String getBillcity() {
return billcity;
}
/**
* @param billcity the billcity to set
*/
public void setBillcity(String billcity) {
this.billcity = billcity;
}
/**
* @return the billcountry
*/
public String getBillcountry() {
return billcountry;
}
/**
* @param billcountry the billcountry to set
*/
public void setBillcountry(String billcountry) {
this.billcountry = billcountry;
}
/**
* @return the billstate
*/
public String getBillstate() {
return billstate;
}
/**
* @param billstate the billstate to set
*/
public void setBillstate(String billstate) {
this.billstate = billstate;
}
/**
* @return the billtoname
*/
public String getBilltoname() {
return billtoname;
}
/**
* @param billtoname the billtoname to set
*/
public void setBilltoname(String billtoname) {
this.billtoname = billtoname;
}
/**
* @return the billzip
*/
public String getBillzip() {
return billzip;
}
/**
* @param billzip the billzip to set
*/
public void setBillzip(String billzip) {
this.billzip = billzip;
}
/**
* @return the cardtype
*/
public String getCardtype() {
return cardtype;
}
/**
* @param cardtype the cardtype to set
*/
public void setCardtype(String cardtype) {
this.cardtype = cardtype;
}
/**
* @return the courier
*/
public String getCourier() {
return courier;
}
/**
* @param courier the courier to set
*/
public void setCourier(String courier) {
this.courier = courier;
}
/**
* @return the creditcard
*/
public String getCreditcard() {
return creditcard;
}
/**
* @param creditcard the creditcard to set
*/
public void setCreditcard(String creditcard) {
this.creditcard = creditcard;
}
/**
* @return the creditcardinfo
*/
public long getCreditcardinfo() {
return creditcardinfo;
}
/**
* @param creditcardinfo the creditcardinfo to set
*/
public void setCreditcardinfo(long creditcardinfo) {
this.creditcardinfo = creditcardinfo;
}
/**
* @return the datetime
*/
public String getDatetime() {
return datetime;
}
/**
* @param datetime the datetime to set
*/
public void setDatetime(String datetime) {
this.datetime = datetime;
}
/**
* @return the exprdate
*/
public String getExprdate() {
return exprdate;
}
/**
* @param exprdate the exprdate to set
*/
public void setExprdate(String exprdate) {
this.exprdate = exprdate;
}
/**
* @return the id
*/
public long getId() {
return id;
}
/**
* @param id the id to set
*/
public void setId(long id) {
this.id = id;
}
/**
* @return the isfinished
*/
public long getIsfinished() {
return isfinished;
}
/**
* @param isfinished the isfinished to set
*/
public void setIsfinished(long isfinished) {
this.isfinished = isfinished;
}
/**
* @return the itemid
*/
public String getItemid() {
return itemid;
}
/**
* @param itemid the itemid to set
*/
public void setItemid(String itemid) {
this.itemid = itemid;
}
/**
* @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 paytype
*/
public String getPaytype() {
return paytype;
}
/**
* @param paytype the paytype to set
*/
public void setPaytype(String paytype) {
this.paytype = paytype;
}
/**
* @return the quantity
*/
public long getQuantity() {
return quantity;
}
/**
* @param quantity the quantity to set
*/
public void setQuantity(long quantity) {
this.quantity = quantity;
}
/**
* @return the shipaddr1
*/
public String getShipaddr1() {
return shipaddr1;
}
/**
* @param shipaddr1 the shipaddr1 to set
*/
public void setShipaddr1(String shipaddr1) {
this.shipaddr1 = shipaddr1;
}
/**
* @return the shipaddr2
*/
public String getShipaddr2() {
return shipaddr2;
}
/**
* @param shipaddr2 the shipaddr2 to set
*/
public void setShipaddr2(String shipaddr2) {
this.shipaddr2 = shipaddr2;
}
/**
* @return the shipcity
*/
public String getShipcity() {
return shipcity;
}
/**
* @param shipcity the shipcity to set
*/
public void setShipcity(String shipcity) {
this.shipcity = shipcity;
}
/**
* @return the shipcountry
*/
public String getShipcountry() {
return shipcountry;
}
/**
* @param shipcountry the shipcountry to set
*/
public void setShipcountry(String shipcountry) {
this.shipcountry = shipcountry;
}
/**
* @return the shipstate
*/
public String getShipstate() {
return shipstate;
}
/**
* @param shipstate the shipstate to set
*/
public void setShipstate(String shipstate) {
this.shipstate = shipstate;
}
/**
* @return the shiptoname
*/
public String getShiptoname() {
return shiptoname;
}
/**
* @param shiptoname the shiptoname to set
*/
public void setShiptoname(String shiptoname) {
this.shiptoname = shiptoname;
}
/**
* @return the shipzip
*/
public String getShipzip() {
return shipzip;
}
/**
* @param shipzip the shipzip to set
*/
public void setShipzip(String shipzip) {
this.shipzip = shipzip;
}
/**
* @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;
}
/**
* @return the totalprice
*/
public float getTotalprice() {
return totalprice;
}
/**
* @param totalprice the totalprice to set
*/
public void setTotalprice(float totalprice) {
this.totalprice = totalprice;
}
/**
* @return the transactiondate
*/
public String getTransactiondate() {
return transactiondate;
}
/**
* @param transactiondate the transactiondate to set
*/
public void setTransactiondate(String transactiondate) {
this.transactiondate = transactiondate;
}
/**
* @return the unitprice
*/
public float getUnitprice() {
return unitprice;
}
/**
* @param unitprice the unitprice to set
*/
public void setUnitprice(float unitprice) {
this.unitprice = unitprice;
}
/**
* @return the userid
*/
public String getUserid() {
return userid;
}
/**
* @param userid the userid to set
*/
public void setUserid(String userid) {
this.userid = userid;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -