yanghb
2023-04-21 e52227b01983146f2e3c81dc575141d8b9889497
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
package com.stylefeng.guns.modular.system.warpper;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
 
import java.util.List;
 
@ApiModel
public class OfflineTravelPaymentWarpper {
    @ApiModelProperty("总金额")
    private Double total;
    @ApiModelProperty("列表")
    private List<BaseWarpper> list;
 
    public Double getTotal() {
        return total;
    }
 
    public void setTotal(Double total) {
        this.total = total;
    }
 
    public List<BaseWarpper> getList() {
        return list;
    }
 
    public void setList(List<BaseWarpper> list) {
        this.list = list;
    }
}