github.com/unionj-cloud/go-doudou/v2@v2.3.5/toolkit/astutils/testdata/embed.go (about)

     1  package main
     2  
     3  //go:generate go-doudou name --file $GOFILE
     4  
     5  type TestBase struct {
     6  	Index string `json:"index"`
     7  	Type  string `json:"type"`
     8  }
     9  
    10  type TestEmbed struct {
    11  	TestBase
    12  	Fields []Field `json:"fields"`
    13  }