2026-01-05 17:20:41 +08:00
|
|
|
// Package network define struct of network operation
|
|
|
|
|
package network
|
|
|
|
|
|
|
|
|
|
// ComponentAttributeUpdateInfo defines circuit diagram component attribute params info
|
|
|
|
|
type ComponentAttributeUpdateInfo struct {
|
|
|
|
|
AttributeConfigs []ComponentAttributeConfig `json:"attributes"`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// ComponentAttributeConfig defines request params of circuit diagram component attribute update config
|
|
|
|
|
type ComponentAttributeConfig struct {
|
2026-01-08 17:34:44 +08:00
|
|
|
AttributeToken string `json:"token"`
|
|
|
|
|
AttributeOldVal string `json:"attribute_old_val"`
|
|
|
|
|
AttributeNewVal string `json:"attribute_new_val"`
|
2026-01-05 17:20:41 +08:00
|
|
|
}
|