| 9 | ) |
| 10 | |
| 11 | type Banner struct { |
| 12 | Id int `json:"id"` |
| 13 | Type string `orm:"size(30);index" json:"type" description:"横幅类型,如 wechat(小程序),pc(PC端),mobi(移动端)等"` |
| 14 | Title string `json:"title" orm:"size(100)"` |
| 15 | Link string `json:"link"` |
| 16 | Image string `json:"image"` |
| 17 | Sort int `json:"sort"` |
| 18 | Status bool `json:"status"` |
| 19 | CreatedAt time.Time `json:"created_at"` |
| 20 | } |
| 21 | |
| 22 | func NewBanner() *Banner { |
| 23 | return &Banner{} |
nothing calls this directly
no outgoing calls
no test coverage detected