9 lines
407 B
Go
9 lines
407 B
Go
package model
|
|
|
|
// IPerf G6关系图数据对象 chart_graph
|
|
type IPerf struct {
|
|
RowID int64 `json:"rowId,omitempty" gorm:"column:row_id;primaryKey;autoIncrement"` // 记录ID
|
|
RowType string `json:"rowType,omitempty" gorm:"column:row_type"` // 记录类型(node/edge/combo)
|
|
RowGroup string `json:"rowGroup,omitempty" gorm:"column:row_group"` // 记录组名
|
|
}
|