Commit a3e23b2c by guojuxing

微盟商品属性列表

parent 1bf61f6f
......@@ -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:
......
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;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment