2024-01-25 17:28:26 +08:00
|
|
|
package com.gunshi.project.xyt.model;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 流量数据
|
|
|
|
|
*
|
|
|
|
|
* @author lyf
|
|
|
|
|
* @version 1.0.0
|
|
|
|
|
* @since 2024-01-25
|
|
|
|
|
*/
|
2024-01-26 17:24:07 +08:00
|
|
|
@Data
|
2024-01-26 14:41:41 +08:00
|
|
|
@TableName("ST_FLOW_R")
|
|
|
|
|
@Schema(description = "流量数据")
|
|
|
|
|
public class StFlowR {
|
|
|
|
|
@MppMultiId("STCD")
|
|
|
|
|
@Schema(description = "测站编码")
|
|
|
|
|
private String stcd;
|
|
|
|
|
|
|
|
|
|
@MppMultiId("TM")
|
|
|
|
|
@Schema(description = "采集时间")
|
|
|
|
|
@JsonFormat(pattern = DateFormatString.YYYY_MM_DD_HH_MM_SS, timezone = "GMT+8")
|
2024-01-26 17:24:07 +08:00
|
|
|
private Date tm;
|
|
|
|
|
|
2024-01-26 14:41:41 +08:00
|
|
|
@MppMultiId("CHID")
|
|
|
|
|
@Schema(description = "通道")
|
|
|
|
|
private String chid;
|
|
|
|
|
|
|
|
|
|
@TableField("HQ")
|
|
|
|
|
@Schema(description = "小时流量")
|
|
|
|
|
private BigDecimal hq;
|
2024-01-25 17:28:26 +08:00
|
|
|
}
|