2024-01-24 14:27:40 +08:00
|
|
|
package com.gunshi.project.xyt.model;
|
|
|
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
2024-01-25 17:54:14 +08:00
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
2024-01-25 15:57:07 +08:00
|
|
|
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
|
|
|
|
|
import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
|
2024-01-24 14:27:40 +08:00
|
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
2024-01-24 16:32:03 +08:00
|
|
|
|
|
|
|
|
import java.io.Serializable;
|
2024-01-24 14:27:40 +08:00
|
|
|
import java.math.BigDecimal;
|
|
|
|
|
import java.util.Date;
|
|
|
|
|
import lombok.Data;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 库(湖)容曲线表
|
|
|
|
|
*/
|
|
|
|
|
@Schema(description="库(湖)容曲线表")
|
|
|
|
|
@Data
|
|
|
|
|
@TableName(value = "dbo.ST_ZVARL_B")
|
2024-01-24 16:32:03 +08:00
|
|
|
public class StZvarlB implements Serializable {
|
2024-01-24 14:27:40 +08:00
|
|
|
/**
|
|
|
|
|
* 水库ID
|
|
|
|
|
*/
|
2024-01-24 16:32:03 +08:00
|
|
|
@TableField(value = "RES_ID")
|
2024-01-24 14:27:40 +08:00
|
|
|
@Schema(description="水库ID")
|
2024-01-25 15:57:07 +08:00
|
|
|
@JsonSerialize(using = ToStringSerializer.class)
|
2024-01-24 14:27:40 +08:00
|
|
|
private Long resId;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 点序号
|
|
|
|
|
*/
|
2024-01-24 16:32:03 +08:00
|
|
|
@TableField(value = "PTNO")
|
2024-01-24 14:27:40 +08:00
|
|
|
@Schema(description="点序号")
|
|
|
|
|
private Integer ptno;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 测站编码
|
|
|
|
|
*/
|
|
|
|
|
@TableField(value = "STCD")
|
|
|
|
|
@Schema(description="测站编码")
|
|
|
|
|
private String stcd;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 施测时间
|
|
|
|
|
*/
|
|
|
|
|
@TableField(value = "MSTM")
|
|
|
|
|
@Schema(description="施测时间")
|
2024-01-25 17:54:14 +08:00
|
|
|
@JsonFormat(pattern="yyyy-MM-dd HH:mm:ss",timezone="GMT+8")
|
2024-01-24 14:27:40 +08:00
|
|
|
private Date mstm;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 库水位
|
|
|
|
|
*/
|
|
|
|
|
@TableField(value = "RZ")
|
|
|
|
|
@Schema(description="库水位")
|
|
|
|
|
private BigDecimal rz;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 蓄水量
|
|
|
|
|
*/
|
|
|
|
|
@TableField(value = "W")
|
|
|
|
|
@Schema(description="蓄水量")
|
|
|
|
|
private BigDecimal w;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 水面面积
|
|
|
|
|
*/
|
|
|
|
|
@TableField(value = "WSFA")
|
|
|
|
|
@Schema(description="水面面积")
|
|
|
|
|
private Integer wsfa;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 时间戳
|
|
|
|
|
*/
|
|
|
|
|
@TableField(value = "MODITIME")
|
|
|
|
|
@Schema(description="时间戳")
|
2024-01-25 17:54:14 +08:00
|
|
|
@JsonFormat(pattern="yyyy-MM-dd HH:mm:ss",timezone="GMT+8")
|
2024-01-24 14:27:40 +08:00
|
|
|
private Date moditime;
|
|
|
|
|
|
|
|
|
|
public static final String COL_RES_ID = "RES_ID";
|
|
|
|
|
|
|
|
|
|
public static final String COL_PTNO = "PTNO";
|
|
|
|
|
|
|
|
|
|
public static final String COL_STCD = "STCD";
|
|
|
|
|
|
|
|
|
|
public static final String COL_MSTM = "MSTM";
|
|
|
|
|
|
|
|
|
|
public static final String COL_RZ = "RZ";
|
|
|
|
|
|
|
|
|
|
public static final String COL_W = "W";
|
|
|
|
|
|
|
|
|
|
public static final String COL_WSFA = "WSFA";
|
|
|
|
|
|
|
|
|
|
public static final String COL_MODITIME = "MODITIME";
|
|
|
|
|
}
|