seed complete

This commit is contained in:
vanilia
2025-12-12 07:47:28 +07:00
parent 125c43bc66
commit 158e57f6f2
3 changed files with 9 additions and 8 deletions

No files matched your search

@@ -7,10 +7,10 @@ import (
)
type CreateDto struct {
Id *uint `json:"id"`
Installation_Code string `json:"installation_code"`
Code string `json:"code" validate:"maxLength=10"`
Name string `json:"name" validate:"maxLength=50"`
Id *uint `json:"id"`
Installation_Code *string `json:"installation_code"`
Code string `json:"code" validate:"maxLength=10"`
Name string `json:"name" validate:"maxLength=50"`
}
type ReadListDto struct {