Pu Zhibing
2025-08-04 178052e123c4706e78cd2ce09feba6f5df133eb5
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
package com.stylefeng.guns.modular.shunfeng.model.vo;
 
/**
 * 退票参数
 */
public class MechanismVo {
 
 
    private Double k1;
 
    private Double k2;
 
    private Double k3;
 
    private Double k4;
    private Double k5;
    private Double k6;
    private Double k7;
 
    public Double getK1() {
        return k1;
    }
 
    public void setK1(Double k1) {
        this.k1 = k1;
    }
 
    public Double getK2() {
        return k2;
    }
 
    public void setK2(Double k2) {
        this.k2 = k2;
    }
 
    public Double getK3() {
        return k3;
    }
 
    public void setK3(Double k3) {
        this.k3 = k3;
    }
 
    public Double getK4() {
        return k4;
    }
 
    public void setK4(Double k4) {
        this.k4 = k4;
    }
 
    public Double getK5() {
        return k5;
    }
 
    public void setK5(Double k5) {
        this.k5 = k5;
    }
 
    public Double getK6() {
        return k6;
    }
 
    public void setK6(Double k6) {
        this.k6 = k6;
    }
 
    public Double getK7() {
        return k7;
    }
 
    public void setK7(Double k7) {
        this.k7 = k7;
    }
}