zhizhijie
12 小时以前 fbc1c1590e7e81a550beb50c7cf65c663c7c5b41
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
package com.trafficaudit.dataimport.entity;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
 
import java.time.LocalDateTime;
 
/**
 * 规上规下拆分运输量(用户手动上传)
 * periodType: MONTH当月 / CUMULATIVE累计
 */
@Data
@TableName("scale_split_transport")
public class ScaleSplitTransport {
    @TableId(type = IdType.AUTO)
    private Long id;
    private String reportPeriod;
    private String periodType;
    private String regionName;
 
    private Double aboveScaleFreight;
    private Double aboveScaleTurnover;
    private Integer aboveScaleRank;
    private Double aboveScaleYoy;
    private Integer aboveScaleYoyRank;
 
    private Double belowScaleFreight;
    private Double belowScaleTurnover;
    private Integer belowScaleRank;
    private Double belowScaleYoy;
    private Integer belowScaleYoyRank;
 
    private Double totalFreight;
    private Double totalTurnover;
    private Integer totalRank;
    private Double totalYoy;
    private Integer totalYoyRank;
 
    private Long importBatchId;
    private LocalDateTime createdAt;
}