23 lines
587 B
Go
23 lines
587 B
Go
package categorydomain
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type Category struct {
|
|
ID string `json:"id" gorm:"primaryKey"`
|
|
Name string `json:"name"`
|
|
Code string `json:"code"`
|
|
Description *string `json:"description"`
|
|
Sequence *int `json:"sequence"`
|
|
CreatedAt time.Time `json:"created_at"`
|
|
UpdatedAt time.Time `json:"updated_at"`
|
|
}
|
|
|
|
type CategoryReq struct {
|
|
Name string `json:"name" validate:"required"`
|
|
Code string `json:"code" validate:"required"`
|
|
Description *string `json:"description"`
|
|
Sequence *int `json:"sequence"`
|
|
}
|