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-07-20
94bbaadf6c8a642e33b8ca81231259513b9f72ec
[~admin/screen_job.git]
/
src
/
main
/
java
/
com
/
moral
/
entity
/
Area.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.moral.entity;
import lombok.Data;
import javax.persistence.Id;
@Data
public class Area {
private Integer areaCode;
private String areaName;
private Integer cityCode;
}