feat: add UUID to ClientTraffic (#3491)

* Update client_traffic.go

* Update inbound.go
This commit is contained in:
RahGozar
2025-09-17 19:15:28 +03:30
committed by GitHub
parent 0a58b5e745
commit fcdeb1fc79
2 changed files with 3 additions and 0 deletions

View File

@@ -5,6 +5,7 @@ type ClientTraffic struct {
InboundId int `json:"inboundId" form:"inboundId"`
Enable bool `json:"enable" form:"enable"`
Email string `json:"email" form:"email" gorm:"unique"`
UUID string `json:"uuid" form:"uuid" gorm:"unique;type:char(36)"`
SubId string `json:"subId" form:"subId" gorm:"-"`
Up int64 `json:"up" form:"up"`
Down int64 `json:"down" form:"down"`