fix
zhangqian
2023-09-01 163d9e7f1fbf65b9a0e63baac017555b47a28bc4
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
}