wuxw
2024-06-15 e1013e581f738c65a723186674beef8aeba0bb1f
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
package com.java110.dto.integral;
 
import java.io.Serializable;
 
public class DeductionIntegralDto implements Serializable {
 
    private int integral;
 
    private double money;
 
    public DeductionIntegralDto(int integral, double money) {
        this.integral = integral;
        this.money = money;
    }
 
    public int getIntegral() {
        return integral;
    }
 
    public void setIntegral(int integral) {
        this.integral = integral;
    }
 
    public double getMoney() {
        return money;
    }
 
    public void setMoney(double money) {
        this.money = money;
    }
}