jaecoo-be/app/module/approval_histories/response/approval_histories.response.go

17 lines
442 B
Go
Raw Permalink Normal View History

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"`
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"`
}