44323
2023-12-13 a6919a17014fdff73fd703da6f69e50288278720
1
2
3
4
5
6
7
8
9
10
11
12
package com.dsh.course.model.dto;
 
import lombok.Data;
 
@Data
public class IntegralDto {
 
    private Double num1 = 0D;
 
    private Integer num2 = 0;
 
}