mirror of
https://github.com/APIParkLab/APIPark.git
synced 2026-06-14 20:41:15 +08:00
95 lines
1.6 KiB
Go
95 lines
1.6 KiB
Go
package subscribe
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/APIParkLab/APIPark/stores/subscribe"
|
|
)
|
|
|
|
type Subscribe struct {
|
|
Id string
|
|
Service string
|
|
|
|
// 订阅方相关
|
|
Application string
|
|
From int
|
|
Applier string
|
|
ApplyStatus int
|
|
CreateAt time.Time
|
|
}
|
|
|
|
type CreateSubscribe struct {
|
|
Uuid string
|
|
Service string
|
|
Applier string
|
|
Application string
|
|
ApplyStatus int
|
|
From int
|
|
}
|
|
|
|
type UpdateSubscribe struct {
|
|
ApplyStatus *int
|
|
}
|
|
|
|
func FromEntity(e *subscribe.Subscribe) *Subscribe {
|
|
return &Subscribe{
|
|
Id: e.UUID,
|
|
Service: e.Service,
|
|
ApplyStatus: e.ApplyStatus,
|
|
Application: e.Application,
|
|
Applier: e.Applier,
|
|
From: e.From,
|
|
CreateAt: e.CreateAt,
|
|
}
|
|
}
|
|
|
|
type CreateApply struct {
|
|
Uuid string
|
|
Service string
|
|
Team string
|
|
Application string
|
|
ApplyTeam string
|
|
Reason string
|
|
Status int
|
|
Applier string
|
|
}
|
|
|
|
type EditApply struct {
|
|
Opinion *string
|
|
Status *int
|
|
Applier *string
|
|
Approver *string
|
|
}
|
|
|
|
type Apply struct {
|
|
Id string
|
|
Service string
|
|
Team string
|
|
Application string
|
|
ApplyTeam string
|
|
Applier string
|
|
ApplyAt time.Time
|
|
Approver string
|
|
ApproveAt time.Time
|
|
Status int
|
|
Opinion string
|
|
Reason string
|
|
}
|
|
|
|
func FromApplyEntity(e *subscribe.Apply) *Apply {
|
|
return &Apply{
|
|
Id: e.Uuid,
|
|
Service: e.Service,
|
|
Team: e.Team,
|
|
Application: e.Application,
|
|
ApplyTeam: e.ApplyTeam,
|
|
Applier: e.Applier,
|
|
ApplyAt: e.ApplyAt,
|
|
Approver: e.Approver,
|
|
ApproveAt: e.ApproveAt,
|
|
Status: e.Status,
|
|
Opinion: e.Opinion,
|
|
Reason: e.Reason,
|
|
}
|
|
}
|