2025-12-18 17:50:43 +08:00
|
|
|
// Package orm define database data struct
|
|
|
|
|
package orm
|
|
|
|
|
|
2025-12-24 16:55:55 +08:00
|
|
|
// AttributeSet define struct to return component tag、component NSPath field
|
2025-12-18 17:50:43 +08:00
|
|
|
type AttributeSet struct {
|
2025-12-19 17:33:12 +08:00
|
|
|
CompTag string
|
|
|
|
|
CompNSPath string
|
|
|
|
|
// StationTag string
|
2025-12-18 17:50:43 +08:00
|
|
|
}
|