Initial commit

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
This commit is contained in:
2026-09-15 13:57:10 +08:00
co-authored by Claude Opus 5
commit 8679200f41
1897 changed files with 257900 additions and 0 deletions
+41
View File
@@ -0,0 +1,41 @@
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
}