chen_xi
2023-06-29 123181df72f846957a5b05cf45b323f8762fe9b8
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
package com.moral.api.pojo.dto.historySecondCruiser;
 
import lombok.Data;
import lombok.EqualsAndHashCode;
 
import java.math.BigDecimal;
 
/**
 * @ClassName HistorySecondCruiserResultDTO
 * @Description TODO
 * @Author @lizijie
 * @Date 2023-06-29 8:32
 * @Version 1.0
 */
@Data
public class HistorySecondCruiserResultCountDTO {
 
    /**
     * 数据
     */
    private BigDecimal sumNum = BigDecimal.ZERO;
 
    /**
     * 计数
     */
    private Integer contNum = 0;
}