Pu Zhibing
7 天以前 4c99ee7028c3fe58a2cd4b8273b22c75c45574fc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.stylefeng.guns.modular.system.warpper;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.util.List;
 
/**
 * @author zhibing.pu
 * @Date 2023/8/17 9:41
 */
@Data
@ApiModel
public class QuerySettlementAmount {
    @ApiModelProperty("标题类型(1=日结算,2=周结算,3=月结算)")
    private Integer type;
    @ApiModelProperty("总待支付金额")
    private Double amount;
    @ApiModelProperty("明细列表")
    private List<QuerySettlementAmountDetails> list;
}