?? orderinfo.java
字號:
package mrgf.hibernate;
import java.sql.Date;
import java.util.*;
public class OrderInfo {
private int total;
private int money;
private Date dates;
private String consignment;
private String username;
private String address;
private String postCard;
private String person;
private String sex;
private String idCard;
private String phone;
private String tel;
private String qq;
private String email;
private Set sellInfos=new HashSet();
private String id;
private String checkOutType;
public OrderInfo() {
}
public void setTotal(int total) {
this.total = total;
}
public void setMoney(int money) {
this.money = money;
}
public void setDates(Date dates) {
this.dates = dates;
}
public void setConsignment(String consignment) {
this.consignment = consignment;
}
public void setUsername(String username) {
this.username = username;
}
public void setAddress(String address) {
this.address = address;
}
public void setPostCard(String postCard) {
this.postCard = postCard;
}
public void setPerson(String person) {
this.person = person;
}
public void setSex(String sex) {
this.sex = sex;
}
public void setIdCard(String idCard) {
this.idCard = idCard;
}
public void setPhone(String phone) {
this.phone = phone;
}
public void setTel(String tel) {
this.tel = tel;
}
public void setQq(String qq) {
this.qq = qq;
}
public void setEmail(String email) {
this.email = email;
}
public void setSellInfos(Set sellInfos) {
this.sellInfos = sellInfos;
}
public void setId(String id) {
this.id = id;
}
public void setCheckOutType(String checkOutType) {
this.checkOutType = checkOutType;
}
public int getTotal() {
return total;
}
public int getMoney() {
return money;
}
public Date getDates() {
return dates;
}
public String getConsignment() {
return consignment;
}
public String getUsername() {
return username;
}
public String getAddress() {
return address;
}
public String getPostCard() {
return postCard;
}
public String getPerson() {
return person;
}
public String getSex() {
return sex;
}
public String getIdCard() {
return idCard;
}
public String getPhone() {
return phone;
}
public String getTel() {
return tel;
}
public String getQq() {
return qq;
}
public String getEmail() {
return email;
}
public Set getSellInfos() {
return sellInfos;
}
public String getId() {
return id;
}
public String getCheckOutType() {
return checkOutType;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -