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;
|
|
/**
|
* 交企统H203-2表:道路货物运输月度生产情况
|
*/
|
@Data
|
@TableName("h2032_enterprise_monthly")
|
public class H2032EnterpriseMonthly {
|
@TableId(type = IdType.AUTO)
|
private Long id;
|
private String reportPeriod;
|
/** 所属地区(行政区划代码) */
|
private String regionCode;
|
/** 企业代码 */
|
private String enterpriseCode;
|
/** 企业名称 */
|
private String enterpriseName;
|
/** 统一社会信用代码 */
|
private String unifiedCreditCode;
|
/** 填报单位 */
|
private String reportUnit;
|
|
private Integer vehicleTotal;
|
private Double tonsTotal;
|
private Integer vehicleTractor;
|
private Integer vehicleTrailer;
|
private Double tonsTrailer;
|
private Integer vehicleContainer;
|
private Double tonsContainer;
|
private Integer vehicleWhole;
|
private Double tonsWhole;
|
|
private Double freightTotal;
|
private Double turnoverTotal;
|
|
private Double freightContainer;
|
private Double freightCoal;
|
private Double freightOilGas;
|
private Double freightCrudeOil;
|
private Double freightMetalOre;
|
private Double freightIronOre;
|
private Double freightBuilding;
|
private Double freightGrain;
|
|
private Double avgTonnage;
|
private Double avgTonnageTrailer;
|
private Double avgTonnageWhole;
|
private Double avgDistance;
|
private Double dailyTripsPerTon;
|
private Double dailyMileagePerVehicle;
|
private Double dailyVolumePerVehicle;
|
private Double dailyTripsWithTractor;
|
|
private Double vehicleMomGrowth;
|
private Double tonsMomGrowth;
|
private Double freightMomGrowth;
|
private Double turnoverMomGrowth;
|
private Double avgDistanceMomGrowth;
|
|
private Double vehicleYoyGrowth;
|
private Double tonsYoyGrowth;
|
private Double tractorTrailerRatio;
|
private Double freightYoyGrowth;
|
private Double turnoverYoyGrowth;
|
private Double avgDistanceYoyGrowth;
|
|
private String unitLeader;
|
private String statsLeader;
|
private String contactPerson;
|
private String contactPhone;
|
private String reportDate;
|
private String verifyExplanation;
|
private String reportNotes;
|
private String modifyRecord;
|
|
private Long importBatchId;
|
private LocalDateTime createdAt;
|
}
|