多字段唯一键
()
| 24 | |
| 25 | // 多字段唯一键 |
| 26 | func (this *Fans) TableUnique() [][]string { |
| 27 | return [][]string{ |
| 28 | []string{"Uid", "FansId"}, |
| 29 | } |
| 30 | } |
| 31 | |
| 32 | //关注和取消关注 |
| 33 | func (this *Fans) FollowOrCancel(uid, fansId int) (cancel bool, err error) { |
nothing calls this directly
no outgoing calls
no test coverage detected