wlzboy
7 小时以前 5f2ee03958a1a16dc27195c76ea7cffb422c95d1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
package com.ruoyi.system.domain;
 
import java.math.BigDecimal;
import java.util.Date;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.ruoyi.common.annotation.Excel;
import com.ruoyi.common.core.domain.BaseEntity;
 
/**
 * 车辆里程统计对象 tb_vehicle_mileage_stats
 */
public class VehicleMileageStats extends BaseEntity {
    private static final long serialVersionUID = 1L;
 
    /** 统计ID */
    private Long statsId;
 
    /** 车辆ID */
    @Excel(name = "车辆ID")
    private Long vehicleId;
 
    /** 车牌号 */
    @Excel(name = "车牌号")
    private String vehicleNo;
 
    /** 归属分公司 */
    @Excel(name = "归属分公司")
    private String deptName;
 
    /** 分公司ID(用于查询,不导出) */
    private Long deptId;
 
    /** 统计日期 */
    @JsonFormat(pattern = "yyyy-MM-dd")
    @Excel(name = "统计日期", width = 30, dateFormat = "yyyy-MM-dd")
    private Date statDate;
 
    /** 总里程(公里) */
    @Excel(name = "总里程(公里)")
    private BigDecimal totalMileage;
 
    /** 任务时段里程(公里) */
    @Excel(name = "任务时段里程(公里)")
    private BigDecimal taskMileage;
 
    /** 非任务时段里程(公里) */
    @Excel(name = "非任务时段里程(公里)")
    private BigDecimal nonTaskMileage;
 
    /** 任务里程占比(0-1) */
    @Excel(name = "任务里程占比")
    private BigDecimal taskRatio;
 
    /** GPS点数量 */
    @Excel(name = "GPS点数量")
    private Integer gpsPointCount;
 
    /** 任务数量 */
    @Excel(name = "任务数量")
    private Integer taskCount;
 
    /** 关联的分段数量 */
    @Excel(name = "分段数量")
    private Integer segmentCount;
 
    /** 数据来源(segment-从分段汇总,gps-直接计算) */
    private String dataSource;
 
    public Long getStatsId() {
        return statsId;
    }
 
    public void setStatsId(Long statsId) {
        this.statsId = statsId;
    }
 
    public Long getVehicleId() {
        return vehicleId;
    }
 
    public void setVehicleId(Long vehicleId) {
        this.vehicleId = vehicleId;
    }
 
    public String getVehicleNo() {
        return vehicleNo;
    }
 
    public void setVehicleNo(String vehicleNo) {
        this.vehicleNo = vehicleNo;
    }
 
    public String getDeptName() {
        return deptName;
    }
 
    public void setDeptName(String deptName) {
        this.deptName = deptName;
    }
 
    public Long getDeptId() {
        return deptId;
    }
 
    public void setDeptId(Long deptId) {
        this.deptId = deptId;
    }
 
    public Date getStatDate() {
        return statDate;
    }
 
    public void setStatDate(Date statDate) {
        this.statDate = statDate;
    }
 
    public BigDecimal getTotalMileage() {
        return totalMileage;
    }
 
    public void setTotalMileage(BigDecimal totalMileage) {
        this.totalMileage = totalMileage;
    }
 
    public BigDecimal getTaskMileage() {
        return taskMileage;
    }
 
    public void setTaskMileage(BigDecimal taskMileage) {
        this.taskMileage = taskMileage;
    }
 
    public BigDecimal getNonTaskMileage() {
        return nonTaskMileage;
    }
 
    public void setNonTaskMileage(BigDecimal nonTaskMileage) {
        this.nonTaskMileage = nonTaskMileage;
    }
 
    public BigDecimal getTaskRatio() {
        return taskRatio;
    }
 
    public void setTaskRatio(BigDecimal taskRatio) {
        this.taskRatio = taskRatio;
    }
 
    public Integer getGpsPointCount() {
        return gpsPointCount;
    }
 
    public void setGpsPointCount(Integer gpsPointCount) {
        this.gpsPointCount = gpsPointCount;
    }
 
    public Integer getTaskCount() {
        return taskCount;
    }
 
    public void setTaskCount(Integer taskCount) {
        this.taskCount = taskCount;
    }
 
    public Integer getSegmentCount() {
        return segmentCount;
    }
 
    public void setSegmentCount(Integer segmentCount) {
        this.segmentCount = segmentCount;
    }
 
    public String getDataSource() {
        return dataSource;
    }
 
    public void setDataSource(String dataSource) {
        this.dataSource = dataSource;
    }
}