Pu Zhibing
2 天以前 28e148e28986a08414a4c690a5e5e7ecdc87f9a7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.stylefeng.guns.modular.system.model;
 
import lombok.Data;
 
import java.math.BigDecimal;
 
@Data
public class DriverRankVo {
    private Integer driverId;
 
    private String driverName;
 
    private Integer userNum;
 
    private BigDecimal money;
 
    private Long activityId;
}