pre-dev: initial commit

This commit is contained in:
2025-08-11 10:41:25 +07:00
parent e0ecf1c906
commit ee9b4a9035
50 changed files with 1020 additions and 1 deletions

No files matched your search

@@ -0,0 +1,22 @@
/*
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
}