Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gic-store
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-store
Commits
fcad3105
Commit
fcad3105
authored
Sep 04, 2020
by
zhiwj
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
门店导入
parent
bb915831
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
15 deletions
+15
-15
ClerkDTO.java
gic-store-api/src/main/java/com/gic/store/dto/ClerkDTO.java
+4
-4
StoreInfoDTO.java
...ore-api/src/main/java/com/gic/store/dto/StoreInfoDTO.java
+11
-11
No files found.
gic-store-api/src/main/java/com/gic/store/dto/ClerkDTO.java
View file @
fcad3105
...
...
@@ -126,7 +126,7 @@ public class ClerkDTO implements Serializable {
}
public
void
setPositionName
(
String
positionName
)
{
this
.
positionName
=
positionName
;
this
.
positionName
=
positionName
==
null
?
null
:
positionName
.
trim
()
;
}
public
Integer
getClerkGender
()
{
...
...
@@ -142,7 +142,7 @@ public class ClerkDTO implements Serializable {
}
public
void
setNationcode
(
String
nationcode
)
{
this
.
nationcode
=
nationcode
;
this
.
nationcode
=
nationcode
==
null
?
null
:
nationcode
.
trim
()
;
}
public
String
getPhoneNumber
()
{
...
...
@@ -150,7 +150,7 @@ public class ClerkDTO implements Serializable {
}
public
void
setPhoneNumber
(
String
phoneNumber
)
{
this
.
phoneNumber
=
phoneNumber
;
this
.
phoneNumber
=
phoneNumber
==
null
?
null
:
phoneNumber
.
trim
()
;
}
public
Integer
getStatus
()
{
...
...
@@ -170,7 +170,7 @@ public class ClerkDTO implements Serializable {
}
public
void
setRemark
(
String
remark
)
{
this
.
remark
=
remark
;
this
.
remark
=
remark
==
null
?
null
:
remark
.
trim
()
;
}
public
String
getRemark
()
{
...
...
gic-store-api/src/main/java/com/gic/store/dto/StoreInfoDTO.java
View file @
fcad3105
...
...
@@ -159,7 +159,7 @@ public class StoreInfoDTO implements Serializable {
}
public
void
setConactsPhone
(
String
conactsPhone
)
{
this
.
conactsPhone
=
conactsPhone
;
this
.
conactsPhone
=
conactsPhone
==
null
?
null
:
conactsPhone
.
trim
()
;
}
public
String
getAddress
()
{
...
...
@@ -167,7 +167,7 @@ public class StoreInfoDTO implements Serializable {
}
public
void
setAddress
(
String
address
)
{
this
.
address
=
address
;
this
.
address
=
address
==
null
?
null
:
address
.
trim
()
;
}
public
String
getBrandIds
()
{
...
...
@@ -175,7 +175,7 @@ public class StoreInfoDTO implements Serializable {
}
public
void
setBrandIds
(
String
brandIds
)
{
this
.
brandIds
=
brandIds
;
this
.
brandIds
=
brandIds
==
null
?
null
:
brandIds
.
trim
()
;
}
public
String
getAreaId
()
{
...
...
@@ -183,7 +183,7 @@ public class StoreInfoDTO implements Serializable {
}
public
void
setAreaId
(
String
areaId
)
{
this
.
areaId
=
areaId
;
this
.
areaId
=
areaId
==
null
?
null
:
areaId
.
trim
()
;
}
public
String
getLongitude
()
{
...
...
@@ -191,7 +191,7 @@ public class StoreInfoDTO implements Serializable {
}
public
void
setLongitude
(
String
longitude
)
{
this
.
longitude
=
longitude
;
this
.
longitude
=
longitude
==
null
?
null
:
longitude
.
trim
()
;
}
public
String
getLatitude
()
{
...
...
@@ -199,7 +199,7 @@ public class StoreInfoDTO implements Serializable {
}
public
void
setLatitude
(
String
latitude
)
{
this
.
latitude
=
latitude
;
this
.
latitude
=
latitude
==
null
?
null
:
latitude
.
trim
()
;
}
public
Integer
getOverflowStatus
()
{
...
...
@@ -295,7 +295,7 @@ public class StoreInfoDTO implements Serializable {
}
public
void
setProvinceId
(
String
provinceId
)
{
this
.
provinceId
=
provinceId
;
this
.
provinceId
=
provinceId
==
null
?
null
:
provinceId
.
trim
()
;
}
public
String
getCityId
()
{
...
...
@@ -303,7 +303,7 @@ public class StoreInfoDTO implements Serializable {
}
public
void
setCityId
(
String
cityId
)
{
this
.
cityId
=
cityId
;
this
.
cityId
=
cityId
==
null
?
null
:
cityId
.
trim
()
;
}
public
String
getProvinces
()
{
...
...
@@ -311,7 +311,7 @@ public class StoreInfoDTO implements Serializable {
}
public
void
setProvinces
(
String
provinces
)
{
this
.
provinces
=
provinces
;
this
.
provinces
=
provinces
==
null
?
null
:
provinces
.
trim
()
;
}
public
Integer
getCreateType
()
{
...
...
@@ -343,7 +343,7 @@ public class StoreInfoDTO implements Serializable {
}
public
void
setRegionName
(
String
regionName
)
{
this
.
regionName
=
regionName
;
this
.
regionName
=
regionName
==
null
?
null
:
regionName
.
trim
()
;
}
public
List
<
Integer
>
getStoreBrandIdList
()
{
...
...
@@ -480,6 +480,6 @@ public class StoreInfoDTO implements Serializable {
}
public
void
setCountyId
(
String
countyId
)
{
this
.
areaId
=
countyId
;
this
.
areaId
=
countyId
==
null
?
null
:
areaId
;
}
}
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