zhangqian
2023-10-09 81cda4f09d4c0fff6edd087d1c49d05cb6eaab38
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
}