Files

22 lines
442 B
Go

/*
DESCRIPTION:
Sample of a case-entity that utilized the base according to the needs.
NOTE:
Make sure to use 'case-sensitive' option when searching
TODO:
replace 'child' with the name of the package, ie: myentity
replace 'Child' with the name of the entity, ie: MyEntity
*/
package child
import (
eb "simrs-vx/internal/domain/main-entities/child/base"
)
type Child struct {
Id int `json:"id"` // in many cases the usage of
eb.Basic
}