zhangqian
2023-09-14 d93d2bc56ed06b3c060ff48f49591e8c5d779230
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package request
 
import (
    "apsClient/model"
)
 
type AddPlc struct {
    model.DevicePlc
}
 
type UpdatePlc struct {
    Id int `json:"id"`
    model.DevicePlc
}