7 lines
219 B
Go
7 lines
219 B
Go
|
|
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"`
|
||
|
|
}
|