Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gic-platform-auth
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-platform-auth
Commits
114f89f5
Commit
114f89f5
authored
Mar 30, 2020
by
zhiwj
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bug
parent
3ba27501
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
12 deletions
+14
-12
OrderResourceQO.java
...eb/src/main/java/com/gic/auth/web/qo/OrderResourceQO.java
+6
-6
OrderResourceVO.java
...eb/src/main/java/com/gic/auth/web/vo/OrderResourceVO.java
+8
-6
No files found.
gic-platform-auth-web/src/main/java/com/gic/auth/web/qo/OrderResourceQO.java
View file @
114f89f5
...
...
@@ -19,9 +19,9 @@ public class OrderResourceQO implements Serializable {
/**
* channel:2 或者 channel:3时 传店铺ids,
*/
private
List
<
Integer
>
storeContent
;
private
List
<
Long
>
storeContent
;
private
Integer
storeWidgetId
;
private
Long
storeWidgetId
;
public
Integer
getChannel
()
{
return
channel
;
...
...
@@ -31,19 +31,19 @@ public class OrderResourceQO implements Serializable {
this
.
channel
=
channel
;
}
public
List
<
Integer
>
getStoreContent
()
{
public
List
<
Long
>
getStoreContent
()
{
return
storeContent
;
}
public
void
setStoreContent
(
List
<
Integer
>
storeContent
)
{
public
void
setStoreContent
(
List
<
Long
>
storeContent
)
{
this
.
storeContent
=
storeContent
;
}
public
Integer
getStoreWidgetId
()
{
public
Long
getStoreWidgetId
()
{
return
storeWidgetId
;
}
public
void
setStoreWidgetId
(
Integer
storeWidgetId
)
{
public
void
setStoreWidgetId
(
Long
storeWidgetId
)
{
this
.
storeWidgetId
=
storeWidgetId
;
}
}
gic-platform-auth-web/src/main/java/com/gic/auth/web/vo/OrderResourceVO.java
View file @
114f89f5
...
...
@@ -21,9 +21,11 @@ public class OrderResourceVO implements Serializable {
/**
* channel:2 或者 channel:3时 传店铺ids,
*/
private
List
<
Integer
>
storeContent
;
// @JsonFormat(shape = JsonFormat.Shape.STRING)
private
List
<
Long
>
storeContent
;
private
Integer
storeWidgetId
;
// @JsonFormat(shape = JsonFormat.Shape.STRING)
private
Long
storeWidgetId
;
public
Integer
getChannel
()
{
return
channel
;
...
...
@@ -33,19 +35,19 @@ public class OrderResourceVO implements Serializable {
this
.
channel
=
channel
;
}
public
List
<
Integer
>
getStoreContent
()
{
public
List
<
Long
>
getStoreContent
()
{
return
storeContent
;
}
public
void
setStoreContent
(
List
<
Integer
>
storeContent
)
{
public
void
setStoreContent
(
List
<
Long
>
storeContent
)
{
this
.
storeContent
=
storeContent
;
}
public
Integer
getStoreWidgetId
()
{
public
Long
getStoreWidgetId
()
{
return
storeWidgetId
;
}
public
void
setStoreWidgetId
(
Integer
storeWidgetId
)
{
public
void
setStoreWidgetId
(
Long
storeWidgetId
)
{
this
.
storeWidgetId
=
storeWidgetId
;
}
}
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