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.
 
 
 

16 lines
323 B

package model
import (
"go-common/library/time"
)
// Banner banner
type Banner struct {
ID int64 `json:"id"`
Image string `json:"image"`
Link string `json:"link"`
StartAt time.Time `json:"start_at"`
EndAt time.Time `json:"end_at"`
CTime time.Time `json:"-"`
MTime time.Time `json:"-"`
}