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; /** * 公路旅客个体客运量/周转量(企业线下汇报,用户导入后按市州汇总填充分市州表个体行) */ @Data @TableName("passenger_individual_monthly") public class PassengerIndividualMonthly { @TableId(type = IdType.AUTO) private Long id; /** 报表期 2026-07 */ private String reportPeriod; /** 所属地区(行政区划代码) */ private String regionCode; /** 企业代码 */ private String enterpriseCode; /** 企业名称 */ private String enterpriseName; /** 其中个体客运量(人) */ private Double passengerCount; /** 其中个体旅客周转量(人公里) */ private Double turnover; private LocalDateTime createdAt; }