?? mobiledetails.java
字號:
package com.mpss.entity;
import java.util.Date;
import java.util.HashSet;
import java.util.Set;
/**
* MobileDetails generated by MyEclipse Persistence Tools
*/
public class MobileDetails implements java.io.Serializable {
// Fields
private Integer id;
private Factory factory;
private Date mbirthday;
private String mstyle;
private Double mprice;
private Integer mcount;
private String mremark;
private String mpic;
private Set states = new HashSet(0);
// Constructors
/** default constructor */
public MobileDetails() {
}
/** minimal constructor */
public MobileDetails(Date mbirthday, String mstyle, Double mprice,
Integer mcount, String mremark, String mpic) {
this.mbirthday = mbirthday;
this.mstyle = mstyle;
this.mprice = mprice;
this.mcount = mcount;
this.mremark = mremark;
this.mpic = mpic;
}
/** full constructor */
public MobileDetails(Factory factory, Date mbirthday, String mstyle,
Double mprice, Integer mcount, String mremark, String mpic,
Set states) {
this.factory = factory;
this.mbirthday = mbirthday;
this.mstyle = mstyle;
this.mprice = mprice;
this.mcount = mcount;
this.mremark = mremark;
this.mpic = mpic;
this.states = states;
}
// Property accessors
public Integer getId() {
return this.id;
}
public void setId(Integer id) {
this.id = id;
}
public Factory getFactory() {
return this.factory;
}
public void setFactory(Factory factory) {
this.factory = factory;
}
public Date getMbirthday() {
return this.mbirthday;
}
public void setMbirthday(Date mbirthday) {
this.mbirthday = mbirthday;
}
public String getMstyle() {
return this.mstyle;
}
public void setMstyle(String mstyle) {
this.mstyle = mstyle;
}
public Double getMprice() {
return this.mprice;
}
public void setMprice(Double mprice) {
this.mprice = mprice;
}
public Integer getMcount() {
return this.mcount;
}
public void setMcount(Integer mcount) {
this.mcount = mcount;
}
public String getMremark() {
return this.mremark;
}
public void setMremark(String mremark) {
this.mremark = mremark;
}
public String getMpic() {
return this.mpic;
}
public void setMpic(String mpic) {
this.mpic = mpic;
}
public Set getStates() {
return this.states;
}
public void setStates(Set states) {
this.states = states;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -