自动化立体仓库 - WMS系统
bfwms
2025-03-29 afdf7d86cffe39c24b55936321bd3b3133adaf40
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
package com.zy.asrs.entity;
 
/**
 * 库位占用百分比
 * @author admin
 * @date 2018年12月12日
 */
public class LocChartPie {
    private int fqty;
    private int fqty1;
    private int fqty2;
    private int fqty3;
    private int oqty;
    private int oqty1;
    private int oqty2;
    private int oqty3;
    private int uqty;
    private int xqty;
    public int getFqty() {return fqty;}
    public void setFqty(int fqty) {
        this.fqty = fqty;
    }
    public int getFqty1() {return fqty1;}
    public void setFqty1(int fqty1) {
        this.fqty1 = fqty1;
    }
    public int getFqty2() {return fqty2;}
    public void setFqty2(int fqty2) {
        this.fqty2 = fqty2;
    }
    public int getFqty3() {return fqty3;}
    public void setFqty3(int fqty3) {
        this.fqty3 = fqty3;
    }
    public int getOqty() {
        return oqty;
    }
    public void setOqty(int oqty) {
        this.oqty = oqty;
    }
 
    public int getOqty1() {
        return oqty1;
    }
    public void setOqty1(int oqty1) {
        this.oqty1 = oqty1;
    }
    public int getOqty2() {
        return oqty2;
    }
    public void setOqty2(int oqty2) {
        this.oqty2 = oqty2;
    }
    public int getOqty3() {
        return oqty3;
    }
    public void setOqty3(int oqty3) {
        this.oqty3 = oqty3;
    }
 
    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;
    }
}