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.
|
|
// =================================================================================
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
// =================================================================================
package entity
import ( "github.com/gogf/gf/v2/os/gtime" )
// Coupon is the golang structure for table coupon.
type Coupon struct { Id uint `json:"id" orm:"id" description:""` //
Title string `json:"title" orm:"title" description:""` //
Cover string `json:"cover" orm:"cover" description:""` //
ImgUrl string `json:"imgUrl" orm:"img_url" description:""` //
StartTime int `json:"startTime" orm:"start_time" description:"到期时间"` // 到期时间
EndTime int `json:"endTime" orm:"end_time" description:""` //
Deleted int `json:"deleted" orm:"deleted" description:""` //
CreatedAt *gtime.Time `json:"createdAt" orm:"created_at" description:""` //
UpdatedAt *gtime.Time `json:"updatedAt" orm:"updated_at" description:""` //
}
|