liujie
8 天以前 8672ae043d0c655fdfa86aff218b47d0ea52ac3d
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;
}