fix
zhangqian
2023-11-01 6afbcd88bf9c2c14a16a7c01f6f2e269d4ea2883
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package request
 
type PageInfo struct {
    Page     int `json:"page" form:"page"`         // 页码
    PageSize int `json:"pageSize" form:"pageSize"` // 每页大小
}
 
type GetById struct {
    ID uint `json:"id"` // 主键ID
}
 
type SetCurrentDevice struct {
    CurrentDeviceID string `json:"currentDeviceID,omitempty"` //当前选定的生产设备
}