Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gic-platform-enterprise
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-enterprise
Commits
a3e23b2c
Commit
a3e23b2c
authored
May 29, 2020
by
guojuxing
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
微盟商品属性列表
parent
1bf61f6f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
63 additions
and
0 deletions
+63
-0
WmMallStoreController.java
...c/enterprise/web/controller/wm/WmMallStoreController.java
+11
-0
WeimobGoodsPropertyVO.java
...a/com/gic/enterprise/web/vo/wm/WeimobGoodsPropertyVO.java
+52
-0
No files found.
gic-platform-enterprise-web/src/main/java/com/gic/enterprise/web/controller/wm/WmMallStoreController.java
View file @
a3e23b2c
...
...
@@ -313,6 +313,17 @@ public class WmMallStoreController {
}
/**
* 商品属性
* @param wmMallStoreId
* @return
*/
@RequestMapping
(
"get-goods-property"
)
public
RestResponse
getGoodsPropertyList
(
Integer
wmMallStoreId
)
{
return
ResultControllerUtils
.
commonResult
(
weimobMerchantService
.
getGoodsPropertyList
(
wmMallStoreId
),
WeimobGoodsPropertyVO
.
class
);
}
/**
* 获取微盟卡券列表
* @Title: listWmCoupon
* @Description:
...
...
gic-platform-enterprise-web/src/main/java/com/gic/enterprise/web/vo/wm/WeimobGoodsPropertyVO.java
0 → 100644
View file @
a3e23b2c
package
com
.
gic
.
enterprise
.
web
.
vo
.
wm
;
import
com.fasterxml.jackson.annotation.JsonFormat
;
import
java.io.Serializable
;
import
java.util.List
;
public
class
WeimobGoodsPropertyVO
implements
Serializable
{
private
static
final
long
serialVersionUID
=
3151478691460341256L
;
@JsonFormat
(
shape
=
JsonFormat
.
Shape
.
STRING
)
private
Long
id
;
private
String
title
;
private
List
<
Integer
>
supportModule
;
private
Integer
sort
;
public
Long
getId
()
{
return
id
;
}
public
WeimobGoodsPropertyVO
setId
(
Long
id
)
{
this
.
id
=
id
;
return
this
;
}
public
String
getTitle
()
{
return
title
;
}
public
WeimobGoodsPropertyVO
setTitle
(
String
title
)
{
this
.
title
=
title
;
return
this
;
}
public
List
<
Integer
>
getSupportModule
()
{
return
supportModule
;
}
public
WeimobGoodsPropertyVO
setSupportModule
(
List
<
Integer
>
supportModule
)
{
this
.
supportModule
=
supportModule
;
return
this
;
}
public
Integer
getSort
()
{
return
sort
;
}
public
WeimobGoodsPropertyVO
setSort
(
Integer
sort
)
{
this
.
sort
=
sort
;
return
this
;
}
}
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