jinpengyong
2020-07-20 3508a0975f50ea277f59cc034d41d282ab82623c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.moral.entity;
 
import java.util.Date;
 
import lombok.Data;
 
import javax.persistence.Id;
 
@Data
public class RealTimeWeather {
    @Id
    private Integer monitorPointId;
    private Date time;
    private String json;
}