bilibili-backup/app/service/main/spy/model/service.go

16 lines
234 B
Go
Raw Permalink Normal View History

2019-04-22 10:59:20 +08:00
package model
import (
"go-common/library/time"
)
// Service def.
type Service struct {
ID int64
Name string //服务标识
NickName string //服务可读昵称
Status int8
CTime time.Time
MTime time.Time
}