qudoco-be/app/module/master_statuses/entity/master_statuses.entity.go

7 lines
219 B
Go
Raw Normal View History

2026-02-24 09:37:19 +00:00
package entity
type MasterStatuses struct {
ID uint `json:"id" gorm:"primaryKey;type:int4;autoIncrement"`
Name string `json:"name" gorm:"type:varchar"`
IsActive bool `json:"is_active" gorm:"type:bool"`
}