增加 按小时查询产量
parent
c829fe058b
commit
5d209d8e5e
@ -0,0 +1,26 @@
|
|||||||
|
package com.ruoyi.system.domain;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author wanghao
|
||||||
|
* @date 2022/7/7 19:03
|
||||||
|
*/
|
||||||
|
public class BoxOutput {
|
||||||
|
private String name;
|
||||||
|
private int qty;
|
||||||
|
|
||||||
|
public String getName() {
|
||||||
|
return name;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setName(String name) {
|
||||||
|
this.name = name;
|
||||||
|
}
|
||||||
|
|
||||||
|
public int getQty() {
|
||||||
|
return qty;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setQty(int qty) {
|
||||||
|
this.qty = qty;
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -1,26 +0,0 @@
|
|||||||
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