diff --git a/gather-app/src/main/java/com/ruoyi/database/domain/PeopleVehicleFlow.java b/gather-app/src/main/java/com/ruoyi/database/domain/PeopleVehicleFlow.java index 876a302..86eed5a 100644 --- a/gather-app/src/main/java/com/ruoyi/database/domain/PeopleVehicleFlow.java +++ b/gather-app/src/main/java/com/ruoyi/database/domain/PeopleVehicleFlow.java @@ -27,19 +27,19 @@ public class PeopleVehicleFlow extends BaseEntity { * */ @ApiModelProperty("类型") @TableField(value = "statistic_type") - private Integer statistic_type; + private Integer statisticType; /** * 流量 */ @ApiModelProperty("数量") @TableField(value = "statistic_count") - private String statistic_count; + private String statisticCount; /** * 日期 */ @ApiModelProperty("日期") @TableField(value = "statistic_time") - private String statistic_time; + private String statisticTime; } diff --git a/gather-app/src/main/java/com/ruoyi/database/domain/PeopleVehicleHourFlow.java b/gather-app/src/main/java/com/ruoyi/database/domain/PeopleVehicleHourFlow.java index 389c0a4..88499e2 100644 --- a/gather-app/src/main/java/com/ruoyi/database/domain/PeopleVehicleHourFlow.java +++ b/gather-app/src/main/java/com/ruoyi/database/domain/PeopleVehicleHourFlow.java @@ -26,20 +26,20 @@ public class PeopleVehicleHourFlow { */ @ApiModelProperty("类型") @TableField(value = "statistic_type") - private Integer statistic_type; + private Integer statisticType; /** * 流量 */ @ApiModelProperty("数量") @TableField(value = "statistic_count") - private String statistic_count; + private String statisticCount; /** * 日期 */ @ApiModelProperty("日期") @TableField(value = "statistic_time") - private String statistic_time; + private String statisticTime; }