Files
huangguo_server/models/v/freeVidmod/web.go
T
rootandClaude Opus 5 8679200f41 Initial commit
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
2026-09-15 13:57:10 +08:00

18 lines
307 B
Go

package freeVidmod
import "91porn-server/models/commod"
type ListParam struct {
ListFilter
commod.Page
}
type ListFilter struct {
UID uint64 `form:"uid" json:"uid,omitempty" bson:"uid,omitempty"` //用户ID
}
type WebResp struct {
Total int64 `json:"total"`
List interface{} `json:"list"`
}