📄 queryplant.java
字号:
package com.gensou.logic.sheji.plan;
import com.gensou.hibernate.model.Shengchangjihuatiaomu;
public class QueryPlant {
private Integer id;
private String proid;
private String miaoshu;
private int shuliang;
public QueryPlant(Shengchangjihuatiaomu plant) {
this.id=plant.getId();
this.miaoshu=plant.getChangpinxinxi().getModel();
this.proid=plant.getChangpinxinxi().getChangpinxinxiId();
this.shuliang=plant.getShuliang();
}
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public String getMiaoshu() {
return miaoshu;
}
public void setMiaoshu(String miaoshu) {
this.miaoshu = miaoshu;
}
public String getProid() {
return proid;
}
public void setProid(String proid) {
this.proid = proid;
}
public int getShuliang() {
return shuliang;
}
public void setShuliang(int shuliang) {
this.shuliang = shuliang;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -