10 lines
226 B
Go
10 lines
226 B
Go
|
|
// Package orm define database data struct
|
||
|
|
package orm
|
||
|
|
|
||
|
|
// AttributeSet define struct to return station tag、component Tag、 NSPath field
|
||
|
|
type AttributeSet struct {
|
||
|
|
Tag string
|
||
|
|
NSPath string
|
||
|
|
StationTag string
|
||
|
|
}
|