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
3d720276
Commit
3d720276
authored
Jun 24, 2021
by
guojuxing
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
溢出门店列表添加共享标志字段
parent
702d7c93
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
45 additions
and
0 deletions
+45
-0
StoreOverflowVO.java
...b/src/main/java/com/gic/store/web/vo/StoreOverflowVO.java
+45
-0
No files found.
gic-store-web/src/main/java/com/gic/store/web/vo/StoreOverflowVO.java
View file @
3d720276
...
...
@@ -51,6 +51,21 @@ public class StoreOverflowVO implements Serializable {
private
String
storeGroupName
;
private
String
provinces
;
/**
* 是否共享 1是0否
*/
private
Integer
ownType
;
/**
* 共享标记 1:自有 0:共享
*/
private
Integer
ownerFlag
;
/**
* 自有商户名称
*/
private
String
ownerEntName
;
public
Integer
getStoreId
()
{
return
storeId
;
...
...
@@ -124,6 +139,33 @@ public class StoreOverflowVO implements Serializable {
this
.
completeStatus
=
completeStatus
;
}
public
Integer
getOwnType
()
{
return
ownType
;
}
public
StoreOverflowVO
setOwnType
(
Integer
ownType
)
{
this
.
ownType
=
ownType
;
return
this
;
}
public
Integer
getOwnerFlag
()
{
return
ownerFlag
;
}
public
StoreOverflowVO
setOwnerFlag
(
Integer
ownerFlag
)
{
this
.
ownerFlag
=
ownerFlag
;
return
this
;
}
public
String
getOwnerEntName
()
{
return
ownerEntName
;
}
public
StoreOverflowVO
setOwnerEntName
(
String
ownerEntName
)
{
this
.
ownerEntName
=
ownerEntName
;
return
this
;
}
@Override
public
String
toString
()
{
return
"StoreOverflowVO{"
+
...
...
@@ -136,6 +178,9 @@ public class StoreOverflowVO implements Serializable {
", completeStatus="
+
completeStatus
+
", storeGroupName='"
+
storeGroupName
+
'\''
+
", provinces='"
+
provinces
+
'\''
+
", ownType="
+
ownType
+
", ownerFlag="
+
ownerFlag
+
", ownerEntName='"
+
ownerEntName
+
'\''
+
'}'
;
}
}
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