Pu Zhibing
4 天以前 8522e469e00e1cf6c0410165b0f76c806c13ca83
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;
}