公告板
版本库
filestore
活动
搜索
登录
aps
/
WMS
仓库管理系统
概况
操作记录
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
查操作明细增加查询字段
zhangqian
2024-03-29
c2be95e83d1597eed8623fdd70a77d617465f91e
[aps/WMS.git]
/
response
/
common.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package response
type StatsItem struct {
Type int
Name string
Count int64
}
type StatsTotal struct {
Name string
Count int64
}
type CommonStats struct {
Total StatsTotal
Items []StatsItem
}