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
6ae4aa59
Commit
6ae4aa59
authored
Aug 19, 2020
by
陶光胜
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
门店批量导入修改
parent
e97937fe
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
ClerkDTO.java
gic-store-api/src/main/java/com/gic/store/dto/ClerkDTO.java
+2
-2
StoreInfoDTO.java
...ore-api/src/main/java/com/gic/store/dto/StoreInfoDTO.java
+2
-2
No files found.
gic-store-api/src/main/java/com/gic/store/dto/ClerkDTO.java
View file @
6ae4aa59
...
...
@@ -94,7 +94,7 @@ public class ClerkDTO implements Serializable {
}
public
void
setClerkName
(
String
clerkName
)
{
this
.
clerkName
=
clerkName
;
this
.
clerkName
=
clerkName
.
trim
()
;
}
public
String
getClerkCode
()
{
...
...
@@ -102,7 +102,7 @@ public class ClerkDTO implements Serializable {
}
public
void
setClerkCode
(
String
clerkCode
)
{
this
.
clerkCode
=
clerkCode
;
this
.
clerkCode
=
clerkCode
.
trim
()
;
}
public
Integer
getEnterpriseId
()
{
...
...
gic-store-api/src/main/java/com/gic/store/dto/StoreInfoDTO.java
View file @
6ae4aa59
...
...
@@ -135,7 +135,7 @@ public class StoreInfoDTO implements Serializable {
}
public
void
setStoreName
(
String
storeName
)
{
this
.
storeName
=
storeName
;
this
.
storeName
=
storeName
.
trim
()
;
}
public
String
getStoreCode
()
{
...
...
@@ -143,7 +143,7 @@ public class StoreInfoDTO implements Serializable {
}
public
void
setStoreCode
(
String
storeCode
)
{
this
.
storeCode
=
storeCode
;
this
.
storeCode
=
storeCode
.
trim
()
;
}
public
Integer
getRegionId
()
{
...
...
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