自动化立体仓库 - WCS系统
123
ZY
3 天以前 364b9ccc44bc6863280c5cc00aa8512cfff548d4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
package com.zy.asrs.domain.vo;
 
/**
 * 库位占用百分比
 *
 * @author admin
 * @date 2018年12月12日
 */
public class LocChartPie {
    private int fqty;
    private int oqty;
    private int uqty;
    private int xqty;
 
    public int getFqty() {
        return fqty;
    }
 
    public void setFqty(int fqty) {
        this.fqty = fqty;
    }
 
    public int getOqty() {
        return oqty;
    }
 
    public void setOqty(int oqty) {
        this.oqty = oqty;
    }
 
    public int getUqty() {
        return uqty;
    }
 
    public void setUqty(int uqty) {
        this.uqty = uqty;
    }
 
    public int getXqty() {
        return xqty;
    }
 
    public void setXqty(int xqty) {
        this.xqty = xqty;
    }
}