Showing
1 changed file
with
35 additions
and
0 deletions
@@ -138,3 +138,38 @@ | @@ -138,3 +138,38 @@ | ||
138 | 138 | ||
139 | ``` | 139 | ``` |
140 | 140 | ||
141 | +# 根据名称模糊查询获取一组尺码属性接口 | ||
142 | + | ||
143 | +> 接口名: `/product/querySizeAttributesByName` | ||
144 | + | ||
145 | +### 入参 | ||
146 | + | ||
147 | +------------------------- | ||
148 | +|属性名称|类型|例子|说明|是否必填| | ||
149 | +|--------|----|----|----|--------| | ||
150 | +|idName |String |长 |属性名称中包含的字词 |是| | ||
151 | +--------------------- | ||
152 | + | ||
153 | +### 返回 | ||
154 | + | ||
155 | +``` json | ||
156 | +{ | ||
157 | + "code": 200, | ||
158 | + "data":{ | ||
159 | + "list": [ | ||
160 | + { | ||
161 | + "attributeName": "衣长", | ||
162 | + "id": 60, | ||
163 | + "orderBy": 0 | ||
164 | + } | ||
165 | + ], | ||
166 | + "page": 0,-第几页 | ||
167 | + "size": 0,-单页记录数 | ||
168 | + "total": 0,--总数 | ||
169 | + "totalPage": 0--总页数 | ||
170 | + }, | ||
171 | + "md5": "dfc645ecb0c66c8d4771dd2a749047e8", | ||
172 | + "message": "Product size get success." | ||
173 | +} | ||
174 | + | ||
175 | +``` |
-
Please register or login to post a comment