Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AuthorEL ¶
type AuthorEL struct { Id int32 `d3:"pk:auto"` Rel *entity.Collection `d3:"many_to_many:<target_entity:Redactor,join_on:author_id,reference_on:redactor_id,join_table:author_redactor>,type:eager"` Name string }
d3_table:author
type BookEL ¶
type BookEL struct { Id int32 `d3:"pk:auto"` Rel *entity.Collection `d3:"many_to_many:<target_entity:AuthorEL,join_on:book_id,reference_on:author_id,join_table:book_author>,type:eager"` Name string }
d3_table:book
type BookER ¶
type BookER struct { Id int32 `d3:"pk:auto"` Discounts *entity.Collection `` /* 134-byte string literal not displayed */ Name string }
d3_table:book
type BookLL ¶
type BookLL struct { ID int32 `d3:"pk:auto"` Authors *entity.Collection `` /* 164-byte string literal not displayed */ Name string }
d3_table:book
type DiscountER ¶
d3_table:discount
func (*DiscountER) D3Token ¶
func (d *DiscountER) D3Token() entity.MetaToken
type ProfileLL ¶
type ProfileLL struct { ID int32 `d3:"pk:auto"` Photo *entity.Cell `d3:"one_to_one:<target_entity:PhotoLL,join_on:t3_id,reference_on:id>,type:eager"` Data string }
d3_table:profile
type ShopEL ¶
type ShopEL struct { Id int32 `d3:"pk:auto"` Profile *entity.Cell `d3:"one_to_one:<target_entity:ProfileLL,join_on:t2_id,reference_on:id>,type:eager"` Data string }
d3_table:shop
type ShopER ¶
type ShopER struct { Id int32 `d3:"pk:auto"` Books *entity.Collection `` /* 130-byte string literal not displayed */ Name string }
d3_table:shop
Click to show internal directories.
Click to hide internal directories.