dashboard
repositories
filestore
activity
search
login
admin
/
screen_job
forked from
screen_job
summary
commits
tree
docs
forks
compare
blame
|
history
|
raw
update
jinpengyong
2020-08-07
0ef88815f1893b069d5e59a4161d2a9a4a2f3a10
[~admin/screen_job.git]
/
src
/
main
/
java
/
com
/
moral
/
entity
/
RealWeather.java
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 RealWeather {
@Id
private String cityCode;
private Date time;
private String json;
}