17 lines
441 B
Go
17 lines
441 B
Go
|
|
package response
|
||
|
|
|
||
|
|
import "time"
|
||
|
|
|
||
|
|
type ApprovalHistoriesResponse struct {
|
||
|
|
ID uint `json:"id"`
|
||
|
|
ModuleType string `json:"module_type"`
|
||
|
|
ModuleId uint `json:"module_id"`
|
||
|
|
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"`
|
||
|
|
}
|
||
|
|
|