增加 按类型查询产量
parent
9a403b09c4
commit
250881c4d9
@ -0,0 +1,26 @@
|
||||
package com.ruoyi.system.domain;
|
||||
|
||||
/**
|
||||
* @author wanghao
|
||||
* @date 2022/7/7 19:03
|
||||
*/
|
||||
public class BoxOutputByType {
|
||||
private String plan_type;
|
||||
private int actual_production;
|
||||
|
||||
public String getPlan_type() {
|
||||
return plan_type;
|
||||
}
|
||||
|
||||
public void setPlan_type(String plan_type) {
|
||||
this.plan_type = plan_type;
|
||||
}
|
||||
|
||||
public int getActual_production() {
|
||||
return actual_production;
|
||||
}
|
||||
|
||||
public void setActual_production(int actual_production) {
|
||||
this.actual_production = actual_production;
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue