Guest User

Untitled

a guest
Feb 16th, 2019
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. type Part struct {
  2. gorm.Model
  3. Parents []Part
  4. Children []Part
  5. }
  6.  
  7. type Bom struct {
  8. Parent Part
  9. Child Part
  10. Quantity int
  11. }
Add Comment
Please, Sign In to add comment