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