zhuguifei
2026-03-10 58402bd5e762361363a0f7d7907153c77dbb819f
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
74
75
76
77
package com.shlanbao.tzsc.base.mapping;
 
//综合测试台检测详细数据   成型在线
public class QMFilterOnlineCheckDetail {
    private String id;
    private String pid;//主表唯一标志   pid=detailId
    private Float weight;//重量
    private Float cir;//圆周
    private Float round;//圆度
    private Float len;//长度
    private Float xz;//吸阻
    private Float vents;//总通风率
    private Float hd;//硬度
    private Integer num;//编号
    
    public String getPid() {
        return pid;
    }
    public void setPid(String pid) {
        this.pid = pid;
    }
    public Integer getNum() {
        return num;
    }
    public void setNum(Integer num) {
        this.num = num;
    }
    public String getId() {
        return id;
    }
    public void setId(String id) {
        this.id = id;
    }
    public Float getWeight() {
        return weight;
    }
    public void setWeight(Float weight) {
        this.weight = weight;
    }
    public Float getCir() {
        return cir;
    }
    public void setCir(Float cir) {
        this.cir = cir;
    }
    public Float getRound() {
        return round;
    }
    public void setRound(Float round) {
        this.round = round;
    }
    public Float getLen() {
        return len;
    }
    public void setLen(Float len) {
        this.len = len;
    }
    public Float getXz() {
        return xz;
    }
    public void setXz(Float xz) {
        this.xz = xz;
    }
    public Float getVents() {
        return vents;
    }
    public void setVents(Float vents) {
        this.vents = vents;
    }
    public Float getHd() {
        return hd;
    }
    public void setHd(Float hd) {
        this.hd = hd;
    }
    
}