新增注释
parent
d6a270547b
commit
9c4e40e644
|
|
@ -2,6 +2,7 @@ package com.gunshi.project.hsz.entity.vo;
|
||||||
|
|
||||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||||
import com.gunshi.core.dateformat.DateFormatString;
|
import com.gunshi.core.dateformat.DateFormatString;
|
||||||
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
import lombok.Data;
|
import lombok.Data;
|
||||||
|
|
||||||
import java.math.BigDecimal;
|
import java.math.BigDecimal;
|
||||||
|
|
@ -14,24 +15,33 @@ import java.util.Date;
|
||||||
**/
|
**/
|
||||||
@Data
|
@Data
|
||||||
public class StZqrlBCountVo {
|
public class StZqrlBCountVo {
|
||||||
|
@Schema(description = "站点编码")
|
||||||
private String stcd;
|
private String stcd;
|
||||||
|
|
||||||
|
@Schema(description = "当前溢洪流量")
|
||||||
private BigDecimal val; //溢洪流量
|
private BigDecimal val; //溢洪流量
|
||||||
|
|
||||||
|
@Schema(description = "当日溢洪流量")
|
||||||
private BigDecimal currDayValSum; //当日溢洪流量
|
private BigDecimal currDayValSum; //当日溢洪流量
|
||||||
|
|
||||||
|
@Schema(description = "数据更新时间")
|
||||||
@JsonFormat(pattern = DateFormatString.YYYY_MM_DD_HH_MM_SS, timezone = "GMT+8")
|
@JsonFormat(pattern = DateFormatString.YYYY_MM_DD_HH_MM_SS, timezone = "GMT+8")
|
||||||
private Date createTime;
|
private Date createTime;
|
||||||
|
|
||||||
|
@Schema(description = "当月溢洪流量")
|
||||||
private BigDecimal currMonthSum;// 当月溢洪流量
|
private BigDecimal currMonthSum;// 当月溢洪流量
|
||||||
|
|
||||||
|
@Schema(description = "当年溢洪流量")
|
||||||
private BigDecimal currYearSum; // 当年溢洪流量
|
private BigDecimal currYearSum; // 当年溢洪流量
|
||||||
|
|
||||||
|
@Schema(description = "本年溢洪次数")
|
||||||
private Long currYearCount; // 本年溢洪次数
|
private Long currYearCount; // 本年溢洪次数
|
||||||
|
|
||||||
|
@Schema(description = "本年单次最大溢洪量")
|
||||||
private BigDecimal currYearMaxVal; // 本年单次最大溢洪量
|
private BigDecimal currYearMaxVal; // 本年单次最大溢洪量
|
||||||
|
|
||||||
private String maxOverflowPeriod; // 最大溢洪量时间段
|
@Schema(description = "最大溢洪量时间段")
|
||||||
|
private String maxOverflowPeriod; // 本年最大溢洪量时间段
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue