dashboard
repositories
filestore
activity
search
login
main
/
screen_job
summary
reflog
commits
tree
tickets
docs
forks
compare
blame
|
history
|
raw
删除打印
lizijie
2020-09-11
ee0737924fd917e47ec5468a7f8db5d77791793d
[screen_job.git]
/
src
/
main
/
java
/
com
/
moral
/
entity
/
ForecastWeather.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 ForecastWeather {
@Id
private String cityCode;
private Date time;
private String json;
}