reafactor/unit-dropping: missing 1 change

This commit is contained in:
2025-12-12 09:54:45 +07:00
parent ad7cb3c42a
commit d5023bd93c
@@ -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 {