20 lines
364 B
Go
20 lines
364 B
Go
/*
|
|
DESCRIPTION:
|
|
Sample of a case-entity that utilized the base according to the needs.
|
|
|
|
TODO:
|
|
replace 'parent' with the name of the package, ie: patient
|
|
replace 'Parent' with the name of the entity, ie: Patient
|
|
*/
|
|
package parent
|
|
|
|
import (
|
|
eb "simrs-vx/internal/domain/main-entities/parent/base"
|
|
)
|
|
|
|
type Parent struct {
|
|
Id int `json:"id"`
|
|
eb.Basic
|
|
eb.Default
|
|
}
|