Files
go_process_manager/internal/app/model/ws_share.go
2025-06-01 14:23:24 +08:00

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"`
}