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