|
@@ -125,6 +125,9 @@ public class WxAuthApi {
|
|
|
@ApiImplicitParam(name = "authId", required = false, value = "机构id"),
|
|
|
@ApiImplicitParam(name = "authParty", required = false, value = "机构名称"),
|
|
|
@ApiImplicitParam(name = "productTypeId", required = false, value = "设备分类id"),
|
|
|
+ @ApiImplicitParam(name = "provinceId", required = false, value = "省id"),
|
|
|
+ @ApiImplicitParam(name = "cityId", required = false, value = "市id"),
|
|
|
+ @ApiImplicitParam(name = "townId", required = false, value = "区id"),
|
|
|
@ApiImplicitParam(name = "snCode", required = false, value = "sn码"),
|
|
|
@ApiImplicitParam(name = "pageNum", required = false, value = "第几页"),
|
|
|
@ApiImplicitParam(name = "pageSize", required = false, value = "一页多少条")
|
|
@@ -132,10 +135,11 @@ public class WxAuthApi {
|
|
|
@IpSave(saveName = "认证商品列表",saveParams = true)
|
|
|
@GetMapping("/product/list")
|
|
|
public ResponseJson<PageInfo<WxProductListVo>> getWxProductList(Integer listType, Integer authId, Integer productTypeId,
|
|
|
+ Integer provinceId, Integer cityId, Integer townId,
|
|
|
String authParty, String snCode,
|
|
|
@RequestParam(value = "pageNum", defaultValue = "1") Integer pageNum,
|
|
|
@RequestParam(value = "pageSize", defaultValue = "10") Integer pageSize) {
|
|
|
- return authProductService.getWxProductList(listType, authId, authParty, productTypeId, snCode, pageNum, pageSize);
|
|
|
+ return authProductService.getWxProductList(listType, authId, authParty, productTypeId, provinceId, cityId, townId,snCode, pageNum, pageSize);
|
|
|
}
|
|
|
|
|
|
/**
|