mirror of
https://github.com/lejianwen/rustdesk-api.git
synced 2025-12-01 17:43:16 +00:00
15 lines
426 B
Go
15 lines
426 B
Go
package model
|
||
|
||
type Tag struct {
|
||
IdModel
|
||
Name string `json:"name" gorm:"default:'';not null;"`
|
||
UserId uint `json:"user_id" gorm:"default:0;not null;index"`
|
||
Color uint `json:"color" gorm:"default:0;not null;"` //color 是flutter的颜色值,从0x00000000 到 0xFFFFFFFF; 前两位表示透明度,后面6位表示颜色, 可以转成rgba
|
||
TimeModel
|
||
}
|
||
|
||
type TagList struct {
|
||
Tags []*Tag `json:"list"`
|
||
Pagination
|
||
}
|