Pu Zhibing
2025-04-22 d138293736414a314467a2641e6116ff263ead48
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.ruoyi.bussiness.object.response.screen;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
 
@Data
public class MonthCompensationResponse {
 
    @ApiModelProperty(value = "类型")
    private String type;
 
    @ApiModelProperty(value = "金额")
    private BigDecimal amount;
 
    @ApiModelProperty(value = "占比")
    private String amountRate;
 
}