2026-01-20 03:34:58 +00:00
|
|
|
package response
|
|
|
|
|
|
|
|
|
|
import "time"
|
|
|
|
|
|
|
|
|
|
type ApprovalHistoriesResponse struct {
|
|
|
|
|
ID uint `json:"id"`
|
|
|
|
|
ModuleType string `json:"module_type"`
|
|
|
|
|
ModuleId uint `json:"module_id"`
|
2026-01-25 16:50:49 +00:00
|
|
|
StatusId *int `json:"status_id"`
|
2026-01-20 03:34:58 +00:00
|
|
|
Action string `json:"action"`
|
|
|
|
|
ApprovedBy *uint `json:"approved_by"`
|
|
|
|
|
Message *string `json:"message"`
|
|
|
|
|
CreatedAt time.Time `json:"created_at"`
|
|
|
|
|
UpdatedAt time.Time `json:"updated_at"`
|
|
|
|
|
}
|
|
|
|
|
|