2024-07-02 02:02:56 +00:00
|
|
|
package entity
|
|
|
|
|
|
|
|
|
|
import "time"
|
|
|
|
|
|
|
|
|
|
type RequestForInformationItems struct {
|
2024-07-02 02:48:27 +00:00
|
|
|
ID uint `json:"id" gorm:"primaryKey;type:int4;autoIncrement"`
|
|
|
|
|
RequestForInformationId int `json:"request_for_information_id" gorm:"type:int4"`
|
|
|
|
|
RequestedInfo string `json:"requested_info" gorm:"type:varchar"`
|
|
|
|
|
Reason string `json:"reason" gorm:"type:varchar"`
|
|
|
|
|
StatusId int `json:"status_id" gorm:"type:int4"`
|
|
|
|
|
IsActive *bool `json:"is_active" gorm:"type:bool"`
|
|
|
|
|
CreatedAt time.Time `json:"created_at" gorm:"default:now()"`
|
|
|
|
|
UpdatedAt time.Time `json:"updated_at" gorm:"default:now()"`
|
2024-07-02 02:02:56 +00:00
|
|
|
}
|