Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Task ¶
type Task struct { CreatedAt time.Time `form:"created_at" json:"created_at,omitempty" gorm:"autoCreateTime"` UpdatedAt time.Time `form:"updated_at" json:"updated_at" gorm:"autoUpdateTime"` Title string `form:"title" json:"title" gorm:"size:64;index"` Description string `form:"description" json:"description" gorm:"type:text"` Status string `form:"status" json:"status" gorm:"size:64;index"` ID uint `form:"id" json:"id" gorm:"size:32;primaryKey"` DeletedAt soft_delete.DeletedAt `form:"deleted_at" json:"deleted_at,omitempty" gorm:"index"` }
Click to show internal directories.
Click to hide internal directories.