?? indent.java
字號:
package org.pan.web.book;
/**
* Title: 用戶訂單基本信息資料
* Description:
* Copyright: Copyright (c) 2003
* Company: 多智能網絡有限公司
* @author: siny pan
* @version 1.0
*/
public class indent {
private long Id; //ID序列號
private String IndentNo; //訂單編號
private long UserId; //用戶序列號
private String SubmitTime; //提交訂單時間
private String ConsignmentTime; //交貨時間
private float TotalPrice; //總金額
private String content; //用戶備注
private String IPAddress; //下單時IP
private boolean IsPayoff; //用戶是否已付款
private boolean IsSales; //是否已發貨
public indent() {
Id = 0;
IndentNo = "";
UserId = 0;
SubmitTime = "";
ConsignmentTime = "";
TotalPrice = 0;
content = "";
IPAddress = "";
IsPayoff = false;
IsSales = false;
}
public long getId() {
return Id;
}
public void setId(long newId){
this.Id = newId;
}
public String getIndentNo() {
return IndentNo;
}
public void setIndentNo(String newIndentNo) {
this.IndentNo = newIndentNo;
}
public long getUserId() {
return UserId;
}
public void setUserId(long newUserId){
this.UserId = newUserId;
}
public String getSubmitTime() {
return SubmitTime;
}
public void setSubmitTime(String newSubmitTime) {
this.SubmitTime = newSubmitTime;
}
public String getConsignmentTime() {
return ConsignmentTime;
}
public void setConsignmentTime(String con_time) {
ConsignmentTime = con_time;
}
public float getTotalPrice() {
return TotalPrice;
}
public void setTotalPrice(float newTotalPrice){
this.TotalPrice = newTotalPrice;
}
public String getContent() {
return content;
}
public void setContent(String newContent) {
this.content = newContent;
}
public String getIPAddress() {
return IPAddress;
}
public void setIPAddress(String newIPAddress) {
this.IPAddress = newIPAddress;
}
public boolean getIsPayoff() {
return IsPayoff;
}
public void setIsPayoff(boolean newIsPayoff){
this.IsPayoff = newIsPayoff;
}
public boolean getIsSales() {
return IsSales;
}
public void setIsSales(boolean newIsSales){
this.IsSales = newIsSales;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -