mirror of
https://github.com/MHSanaei/3x-ui.git
synced 2026-06-05 20:54:14 +00:00
10 lines
333 B
Go
10 lines
333 B
Go
|
|
package model
|
||
|
|
|
||
|
|
type NodeClientTraffic struct {
|
||
|
|
Id int `json:"id" gorm:"primaryKey;autoIncrement"`
|
||
|
|
NodeId int `json:"nodeId" gorm:"uniqueIndex:idx_node_email,priority:1;not null"`
|
||
|
|
Email string `json:"email" gorm:"uniqueIndex:idx_node_email,priority:2;not null"`
|
||
|
|
Up int64 `json:"up"`
|
||
|
|
Down int64 `json:"down"`
|
||
|
|
}
|