feat: add MediaSupplyFavorite types and update task plan for generated-code drift diagnosis
Backend CI / Backend (push) Successful in 17m27s

This commit is contained in:
2026-07-15 00:04:13 +08:00
parent 3cb15ab5a3
commit 3037cfe059
4 changed files with 55 additions and 1 deletions
@@ -696,6 +696,32 @@ type MediaPlatform struct {
UpdatedAt pgtype.Timestamptz `json:"updated_at"`
}
type MediaSupplyFavoriteGroup struct {
TenantID int64 `json:"tenant_id"`
UserID int64 `json:"user_id"`
GroupKey string `json:"group_key"`
Name string `json:"name"`
SortOrder int32 `json:"sort_order"`
CreatedAt pgtype.Timestamptz `json:"created_at"`
UpdatedAt pgtype.Timestamptz `json:"updated_at"`
}
type MediaSupplyFavoriteOwner struct {
TenantID int64 `json:"tenant_id"`
UserID int64 `json:"user_id"`
Revision int64 `json:"revision"`
CreatedAt pgtype.Timestamptz `json:"created_at"`
UpdatedAt pgtype.Timestamptz `json:"updated_at"`
}
type MediaSupplyFavoriteResource struct {
TenantID int64 `json:"tenant_id"`
UserID int64 `json:"user_id"`
GroupKey string `json:"group_key"`
ResourceID int64 `json:"resource_id"`
CreatedAt pgtype.Timestamptz `json:"created_at"`
}
type MediaSupplyOrder struct {
ID int64 `json:"id"`
TenantID int64 `json:"tenant_id"`