21 lines
285 B
Go
21 lines
285 B
Go
package entities
|
|
|
|
import "github.com/oklog/ulid/v2"
|
|
|
|
type Customer struct {
|
|
ID ulid.ULID
|
|
Name string
|
|
CompanyID int
|
|
}
|
|
|
|
type CustomerCreate struct {
|
|
Name string
|
|
CompanyID int
|
|
}
|
|
|
|
type CustomerUpdate struct {
|
|
ID ulid.ULID
|
|
Name *string
|
|
CompanyID *int
|
|
}
|