?? recipeinfo.java
字號(hào):
package com.xttc.pojo;
import java.util.HashSet;
import java.util.Set;
/**
* Recipeinfo entity. @author MyEclipse Persistence Tools
*/
public class Recipeinfo implements java.io.Serializable {
// Fields
private Integer id;
private String patientName;
private Integer age;
private String remark;
private Integer sex;
private Integer total;
private String date;
private Set recipedetailinfos = new HashSet(0);
// Constructors
/** default constructor */
public Recipeinfo() {
}
/** full constructor */
public Recipeinfo(String patientName, Integer age, String remark,
Integer sex,Integer total, String date ,Set recipedetailinfos) {
this.patientName = patientName;
this.age = age;
this.remark = remark;
this.sex = sex;
this.total=total;
this.date=date;
this.recipedetailinfos = recipedetailinfos;
}
// Property accessors
public Integer getTotal() {
return total;
}
public void setTotal(Integer total) {
this.total = total;
}
public String getDate() {
return date;
}
public void setDate(String date) {
this.date = date;
}
public Integer getId() {
return this.id;
}
public void setId(Integer id) {
this.id = id;
}
public String getPatientName() {
return this.patientName;
}
public void setPatientName(String patientName) {
this.patientName = patientName;
}
public Integer getAge() {
return this.age;
}
public void setAge(Integer age) {
this.age = age;
}
public String getRemark() {
return this.remark;
}
public void setRemark(String remark) {
this.remark = remark;
}
public Integer getSex() {
return this.sex;
}
public void setSex(Integer sex) {
this.sex = sex;
}
public Set getRecipedetailinfos() {
return this.recipedetailinfos;
}
public void setRecipedetailinfos(Set recipedetailinfos) {
this.recipedetailinfos = recipedetailinfos;
}
}
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -