xyc
5 天以前 664cae654867b528ea339f187ebe290cb04d6fcf
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
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;
}