Pu Zhibing
7 天以前 a1f5b4bcde020c206382c3a07c9b4ecd5784a9d8
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;
}