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;
|
}
|