mirror of
https://github.com/lzh-1625/go_process_manager.git
synced 2025-10-04 23:52:53 +08:00
15 lines
434 B
Go
15 lines
434 B
Go
package model
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type WsShare struct {
|
|
Id int `gorm:"primaryKey;autoIncrement;column:id" json:"id"`
|
|
Pid int `gorm:"column:pid" json:"pid"`
|
|
Write bool `gorm:"column:write" json:"write"`
|
|
ExpireTime time.Time `gorm:"column:expire_time" json:"expireTime"`
|
|
CreateBy string `gorm:"column:create_by" json:"createBy"`
|
|
Token string `gorm:"column:token" json:"token"`
|
|
}
|