You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
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 |
|
}
|
|
|