19 lines
545 B
Go
19 lines
545 B
Go
package dao
|
|
|
|
import "github.com/tiger1103/gfast/v3/internal/app/businesses/dao/internal"
|
|
|
|
// speciesNameDao is the manager for logic model data accessing and custom defined data operations functions management.
|
|
// You can define custom methods on it to extend its functionality as you wish.
|
|
type speciesNameDao struct {
|
|
*internal.SpeciesNameDao
|
|
}
|
|
|
|
var (
|
|
// SpeciesName is globally public accessible object for table tools_gen_table operations.
|
|
SpeciesName = speciesNameDao{
|
|
internal.NewSpeciesNameDao(),
|
|
}
|
|
)
|
|
|
|
// Fill with you ideas below.
|