获取分页数据

**测试地址** - /commodity/list **表头** - application/json;charset=utf-8 **请求方式** - GTE |参数名|类型|说明|是否必填 |-|-|-|-|-| |keyword|string|类型|false| |pageNumber|string|当前页(默认值1)|false| |pageSize|string|分页大小(默认值10)|false| **返回实例** ```json { "total": 101, "rows": [ { "id": 4, "code": "KTLQQDZ", "name": "空调滤清器(大众)", "brand": "", "specification": "", "pickGoods": null, "catModel": "", "unit": "支", "price": 0, "inventory": 2, "isDel": null } ], "code": 200, "msg": "查询成功" } } ``` |参数名|类型|目录|说明| |-|-|-|-|-| |total|int|1|数据总大小| |rows|array|1|数据| |code|int|1|状态码| |msg|string|1|状态| |id|int|2|主键| |brand|string|2|品牌| |catModel|string|2|适合车辆| |code|string|2|项目编码| |inventory|int|2|库存| |name|int|2|项目名称| |pickGoods|int|2|拉货| |specification|string|2|规格| |unit|string|2|单位|