请求参数
```
{
"page": 1, //当前页码
"limit": 10, //每页记录数
"key": "入库"
}
```
响应数据
```
{
"code": 0,
"msg": "success",
"page": {
"totalCount": 0,
"pageSize": 10,
"totalPage": 0,
"currPage": 1,
"list": [{
"id": 1,
"username": "张严",
"operation": "入库",
"productId": 1,
"productName": "娃哈哈山泉水",
"number": "999",
"ip": "192.168.56.10",
"createTime": "2022/9/15"
}]
}
}
```