zhangqian
2023-08-19 066a30751bdc20f9e83b34539de71ae392783e1b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package request
 
import (
    "apsClient/constvar"
    "apsClient/model"
)
 
type AddPlcBrand struct {
    model.PlcBrand
}
 
type UpdatePlcBrand struct {
    Id int `json:"id"`
    model.PlcBrand
}
 
type GetPlcBrandList struct {
    PageInfo
    QueryClass  constvar.PlcBrandQueryClass  `json:"queryClass" form:"queryClass"`
    KeywordType constvar.PlcBrandKeywordType `json:"keywordType"  form:"keywordType"`
    Keyword     string                       `json:"keyword" form:"keyword"`
}