package com.javaweb.hydrology.vo;
|
|
|
/**
|
* 水文数据对象 js_hydrology_data
|
*
|
* @author zmk
|
* @date 2022-09-01
|
*/
|
public class HydrologyDataVo
|
{
|
|
|
private Double record;
|
|
|
|
private String year;
|
|
|
private String month;
|
|
|
private String layer;
|
|
|
public Double getRecord() {
|
return record;
|
}
|
|
|
public void setRecord(Double record) {
|
this.record = record;
|
}
|
|
|
public String getYear() {
|
return year;
|
}
|
|
|
public void setYear(String year) {
|
this.year = year;
|
}
|
|
|
public String getMonth() {
|
return month;
|
}
|
|
|
public void setMonth(String month) {
|
this.month = month;
|
}
|
|
|
public String getLayer() {
|
return layer;
|
}
|
|
|
public void setLayer(String layer) {
|
this.layer = layer;
|
}
|
|
|
|
|
}
|