Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gic-webapp-plug
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
base_platform_enterprise
gic-webapp-plug
Commits
b1390b94
Commit
b1390b94
authored
Jul 02, 2019
by
陶光胜
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
返回结果转化
parent
412e4bc3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
277 additions
and
0 deletions
+277
-0
CityVO.java
src/main/java/com/gic/plug/web/vo/CityVO.java
+88
-0
CountyVO.java
src/main/java/com/gic/plug/web/vo/CountyVO.java
+114
-0
ProvinceVO.java
src/main/java/com/gic/plug/web/vo/ProvinceVO.java
+75
-0
No files found.
src/main/java/com/gic/plug/web/vo/CityVO.java
0 → 100644
View file @
b1390b94
package
com
.
gic
.
plug
.
web
.
vo
;
import
java.io.Serializable
;
import
java.util.Date
;
/**
* tab_city
*/
public
class
CityVO
implements
Serializable
{
/**
* 城市id
*/
private
String
cityId
;
/**
* 城市名称
*/
private
String
cityName
;
/**
* 省份id
*/
private
String
provinceId
;
/**
* 城市拼音
*/
private
String
cityPy
;
/**
*
*/
private
Date
createTime
;
/**
*
*/
private
Date
updateTime
;
public
String
getCityId
()
{
return
cityId
;
}
public
void
setCityId
(
String
cityId
)
{
this
.
cityId
=
cityId
;
}
public
String
getCityName
()
{
return
cityName
;
}
public
void
setCityName
(
String
cityName
)
{
this
.
cityName
=
cityName
;
}
public
String
getProvinceId
()
{
return
provinceId
;
}
public
void
setProvinceId
(
String
provinceId
)
{
this
.
provinceId
=
provinceId
;
}
public
String
getCityPy
()
{
return
cityPy
;
}
public
void
setCityPy
(
String
cityPy
)
{
this
.
cityPy
=
cityPy
;
}
public
Date
getCreateTime
()
{
return
createTime
;
}
public
void
setCreateTime
(
Date
createTime
)
{
this
.
createTime
=
createTime
;
}
public
Date
getUpdateTime
()
{
return
updateTime
;
}
public
void
setUpdateTime
(
Date
updateTime
)
{
this
.
updateTime
=
updateTime
;
}
}
\ No newline at end of file
src/main/java/com/gic/plug/web/vo/CountyVO.java
0 → 100644
View file @
b1390b94
package
com
.
gic
.
plug
.
web
.
vo
;
import
java.io.Serializable
;
import
java.util.Date
;
/**
* tab_county
*/
public
class
CountyVO
implements
Serializable
{
/**
*
*/
private
String
countyId
;
/**
*
*/
private
String
countyName
;
/**
*
*/
private
String
cityId
;
/**
*
*/
private
String
provinceId
;
/**
*
*/
private
String
fullName
;
/**
*
*/
private
Date
createTime
;
/**
*
*/
private
Date
updateTime
;
/**
* 拼音
*/
private
String
countyPy
;
public
String
getCountyId
()
{
return
countyId
;
}
public
void
setCountyId
(
String
countyId
)
{
this
.
countyId
=
countyId
;
}
public
String
getCountyName
()
{
return
countyName
;
}
public
void
setCountyName
(
String
countyName
)
{
this
.
countyName
=
countyName
;
}
public
String
getCityId
()
{
return
cityId
;
}
public
void
setCityId
(
String
cityId
)
{
this
.
cityId
=
cityId
;
}
public
String
getProvinceId
()
{
return
provinceId
;
}
public
void
setProvinceId
(
String
provinceId
)
{
this
.
provinceId
=
provinceId
;
}
public
String
getFullName
()
{
return
fullName
;
}
public
void
setFullName
(
String
fullName
)
{
this
.
fullName
=
fullName
;
}
public
Date
getCreateTime
()
{
return
createTime
;
}
public
void
setCreateTime
(
Date
createTime
)
{
this
.
createTime
=
createTime
;
}
public
Date
getUpdateTime
()
{
return
updateTime
;
}
public
void
setUpdateTime
(
Date
updateTime
)
{
this
.
updateTime
=
updateTime
;
}
public
String
getCountyPy
()
{
return
countyPy
;
}
public
void
setCountyPy
(
String
countyPy
)
{
this
.
countyPy
=
countyPy
;
}
}
\ No newline at end of file
src/main/java/com/gic/plug/web/vo/ProvinceVO.java
0 → 100644
View file @
b1390b94
package
com
.
gic
.
plug
.
web
.
vo
;
import
java.io.Serializable
;
import
java.util.Date
;
/**
* tab_province
*/
public
class
ProvinceVO
implements
Serializable
{
/**
* 省份id
*/
private
String
provinceId
;
/**
* 省份名称
*/
private
String
provinceName
;
/**
* 省份拼音
*/
private
String
provincePy
;
/**
*
*/
private
Date
createTime
;
/**
*
*/
private
Date
updateTime
;
public
String
getProvinceId
()
{
return
provinceId
;
}
public
void
setProvinceId
(
String
provinceId
)
{
this
.
provinceId
=
provinceId
;
}
public
String
getProvinceName
()
{
return
provinceName
;
}
public
void
setProvinceName
(
String
provinceName
)
{
this
.
provinceName
=
provinceName
;
}
public
String
getProvincePy
()
{
return
provincePy
;
}
public
void
setProvincePy
(
String
provincePy
)
{
this
.
provincePy
=
provincePy
;
}
public
Date
getCreateTime
()
{
return
createTime
;
}
public
void
setCreateTime
(
Date
createTime
)
{
this
.
createTime
=
createTime
;
}
public
Date
getUpdateTime
()
{
return
updateTime
;
}
public
void
setUpdateTime
(
Date
updateTime
)
{
this
.
updateTime
=
updateTime
;
}
}
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment