fix
zhangqian
2023-12-01 8324f872ef3a4d0c978a9b1d062800c6a1701c12
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 uint `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"`
}