36 lines
778 B
Java
36 lines
778 B
Java
|
|
package com.gunshi.project.hsz.model;
|
||
|
|
|
||
|
|
|
||
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
||
|
|
import com.gunshi.core.dateformat.DateFormatString;
|
||
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||
|
|
import lombok.Data;
|
||
|
|
|
||
|
|
import java.util.Date;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 描述: 降水量表-面雨量
|
||
|
|
*/
|
||
|
|
@Data
|
||
|
|
public class StPptnRAverage extends StPptnR {
|
||
|
|
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 时段降水量
|
||
|
|
*/
|
||
|
|
@Schema(description="时段降水量")
|
||
|
|
private String drp;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 时间
|
||
|
|
*/
|
||
|
|
@Schema(description="时间")
|
||
|
|
@JsonFormat(pattern = DateFormatString.YYYY_MM_DD_HH_MM_SS, timezone = "GMT+8")
|
||
|
|
private Date tm;
|
||
|
|
|
||
|
|
public StPptnRAverage(Date tm, String drp) {
|
||
|
|
this.tm = tm;
|
||
|
|
this.drp = drp;
|
||
|
|
}
|
||
|
|
}
|