多字段唯一键
()
| 15 | |
| 16 | // 多字段唯一键 |
| 17 | func (this *BookCategory) TableUnique() [][]string { |
| 18 | return [][]string{ |
| 19 | []string{"BookId", "CategoryId"}, |
| 20 | } |
| 21 | } |
| 22 | |
| 23 | //根据书籍id查询分类id |
| 24 | func (this *BookCategory) GetByBookId(book_id int) (cates []Category, rows int64, err error) { |
nothing calls this directly
no outgoing calls
no test coverage detected