dashboard
repositories
filestore
activity
search
login
admin
/
screen_job
forked from
screen_job
summary
commits
tree
docs
forks
compare
blame
|
history
|
raw
走航车数据插入update
于紫祥_1901
2020-09-22
82f7ab08b5316fceae0b092ec57cde7bd8bb143c
[~admin/screen_job.git]
/
src
/
main
/
java
/
com
/
moral
/
entity
/
RealWeatherDaily.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.moral.entity;
import lombok.Data;
import java.util.Date;
import javax.persistence.Id;
@Data
public class RealWeatherDaily {
@Id
private String cityCode;
private Date time;
private String json;
}