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