| | |
| | | saveMediaV2(input: MediaSaveInput!): MediaSaveResponse! |
| | | |
| | | "保存选手头像" |
| | | savePlayerAvatar(playerId: ID!, url: String!, fileName: String, fileSize: Long): MediaSaveResponse! |
| | | savePlayerAvatar(playerId: ID!, path: String!, fileName: String, fileSize: Long): MediaSaveResponse! |
| | | |
| | | "保存活动报名附件" |
| | | saveActivityPlayerAttachment(activityPlayerId: ID!, url: String!, fileName: String, fileSize: Long, mediaType: Int!): MediaSaveResponse! |
| | | saveActivityPlayerAttachment(activityPlayerId: ID!, path: String!, fileName: String, fileSize: Long, mediaType: Int!): MediaSaveResponse! |
| | | } |
| | | |
| | | extend type Query { |
| | |
| | | input MediaSaveInput { |
| | | targetType: String! # 目标类型:player, activity_player |
| | | targetId: ID! # 目标ID |
| | | url: String! # COS文件URL |
| | | thumbUrl: String # 缩略图URL(可选) |
| | | path: String! # COS文件路径 |
| | | thumbPath: String # 缩略图路径(可选) |
| | | fileName: String # 文件名 |
| | | fileExt: String # 文件扩展名 |
| | | fileSize: Long # 文件大小(字节) |