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
+25
View File
@@ -0,0 +1,25 @@
package proto
type AiUndressOrderReq struct {
AppId int `json:"appId"`
FileUrl []string `json:"fileUrl"` //base64存的文件服地址
UserId string `json:"userId"` //用户id
AppOrderNum string `json:"appOrderNum"` //app中生成的订单号
NotifyUrl string `json:"notifyUrl"` //回调产品地址
}
type AiUndressOrderResp struct {
Code int `json:"code"`
}
type AiChangeFaceReq struct {
AppId int `json:"app_id"`
OrderNumAPP string `json:"order_num_app"` //app中生成的订单号
Title string `json:"title"` //模版标题
SourceImageUrl string `json:"source_image_url"` //源脸图片地址
NotifyUrl string `json:"notify_url"` //订单的回调地址
}
type AiChangeFaceResp struct {
Code int `json:"code"`
}