广告
| 20 | |
| 21 | // 广告 |
| 22 | type AdsCont struct { |
| 23 | Id int |
| 24 | Pid int `orm:"index"` |
| 25 | Title string |
| 26 | Code string `orm:"size(4096)"` |
| 27 | Start int |
| 28 | StartTime string `orm:"-"` |
| 29 | End int |
| 30 | EndTime string `orm:"-"` |
| 31 | Status bool |
| 32 | } |
| 33 | |
| 34 | func NewAdsPosition() *AdsPosition { |
| 35 | return &AdsPosition{} |
nothing calls this directly
no outgoing calls
no test coverage detected