finclip-app-manager/domain/entity/proto/qrcode.go

18 lines
617 B
Go

package proto
type GenQrcodeReq struct {
Type string `json:"type"`
AppId string `json:"appId"`
CodeId string `json:"codeId"`
Sequence int `json:"sequence"`
ApiServer string `json:"apiServer"`
Limit string `json:"limit"`
StartParams AppStartParams `json:"startParams"` //小程序启动参数
DebugInfo map[string]interface{} `json:"debugInfo"` //真机调试模式扩展信息
}
type AppStartParams struct {
Path string `json:"path"`
Query string `json:"query"`
}