zhangqian
2023-08-23 06cff5f59c72d36b745515d98b9e645e92bb91a3
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
}