粉丝表
| 17 | |
| 18 | //粉丝表 |
| 19 | type Fans struct { |
| 20 | Id int //自增主键 |
| 21 | Uid int `orm:"index"` //被关注的用户id |
| 22 | FansId int `orm:"index"` //粉丝id |
| 23 | } |
| 24 | |
| 25 | // 多字段唯一键 |
| 26 | func (this *Fans) TableUnique() [][]string { |
nothing calls this directly
no outgoing calls
no test coverage detected