feat: Update entity types to include specific ID types and adjust DTO mappings

This commit is contained in:
2025-03-09 20:44:46 +00:00
parent 86f4c757e3
commit 115f2667f6
9 changed files with 33 additions and 14 deletions
+1 -1
View File
@@ -3,7 +3,7 @@ package entities
import "github.com/oklog/ulid/v2"
type Customer struct {
ID ulid.ULID
EntityBase
Name string
CompanyID int
}
+1 -1
View File
@@ -3,7 +3,7 @@ package entities
import "github.com/oklog/ulid/v2"
type Project struct {
ID ulid.ULID
EntityBase
Name string
CustomerID int
}