BE-MiniERP/modules/sales/models/customer.go
2025-06-23 15:32:27 +07:00

16 lines
340 B
Go

package models
import "time"
type Customer struct {
ID uint `gorm:"primaryKey" json:"id"`
Name string `json:"name"`
Address string `json:"address"`
Phone string `json:"phone"`
Email string `json:"email"`
Type string `json:"type"`
CreatedAt time.Time `json:"created_at"`
UpdatedAt time.Time `json:"updated_at"`
}