Files
huangguo_server/web/service/ai_changeface_ser/scene.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

42 lines
1.3 KiB
Go

package ai_changeface_ser
import "91porn-server/models/v/aiimagetovideomod"
type AllSceneListReq struct {
}
type AllSceneResp struct {
Name string `json:"name" bson:"name"` // 名称
Value int `json:"value" bson:"value"` // 值
}
func (in *AllSceneListReq) All() (data []AllSceneResp, err error) {
var ret []AllSceneResp
ret = append(ret, AllSceneResp{
Name: aiimagetovideomod.SceneTagLiftShirt.String(),
Value: int(aiimagetovideomod.SceneTagLiftShirt),
}, AllSceneResp{
Name: aiimagetovideomod.SceneTagTearClothes.String(),
Value: int(aiimagetovideomod.SceneTagTearClothes),
}, AllSceneResp{
Name: aiimagetovideomod.SceneTagCumOnFace.String(),
Value: int(aiimagetovideomod.SceneTagCumOnFace),
}, AllSceneResp{
Name: aiimagetovideomod.SceneOFace.String(),
Value: int(aiimagetovideomod.SceneOFace),
}, AllSceneResp{
Name: aiimagetovideomod.SceneTagKiss.String(),
Value: int(aiimagetovideomod.SceneTagKiss),
}, AllSceneResp{
Name: aiimagetovideomod.SceneTagSuckBreasts.String(),
Value: int(aiimagetovideomod.SceneTagSuckBreasts),
}, AllSceneResp{
Name: aiimagetovideomod.SceneRevealed.String(),
Value: int(aiimagetovideomod.SceneRevealed),
}, AllSceneResp{
Name: aiimagetovideomod.SceneLargerChest.String(),
Value: int(aiimagetovideomod.SceneLargerChest),
})
return ret, nil
}