23 lines
474 B
Go
23 lines
474 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 'separated' with the name of the package, ie: myentity
|
|
replace 'Separated' with the name of the entity, ie: MyEntity
|
|
*/
|
|
package separated
|
|
|
|
import (
|
|
eb "simrs-vx/internal/domain/main-entities/separated/base"
|
|
)
|
|
|
|
type Separated struct {
|
|
Id int `json:"id"` // in many cases the usage of
|
|
eb.Basic
|
|
eb.Default
|
|
}
|