|
|
|
|
@ -57,13 +57,13 @@ public interface CombinationRecordApi {
|
|
|
|
|
@Parameters({
|
|
|
|
|
@Parameter(name = "userId", description = "用户编号", required = true, example = "1024"),
|
|
|
|
|
@Parameter(name = "activityId", description = "活动编号", required = true, example = "2048"),
|
|
|
|
|
@Parameter(name = "headId", description = "团长编号", required = true, example = "4096"),
|
|
|
|
|
@Parameter(name = "headId", description = "团长编号", example = "4096"), // 如果新发起的团,headId 不用传递
|
|
|
|
|
@Parameter(name = "skuId", description = "SKU 编号", required = true, example = "8192"),
|
|
|
|
|
@Parameter(name = "count", description = "数量", required = true, example = "1"),
|
|
|
|
|
})
|
|
|
|
|
CommonResult<CombinationValidateJoinRespDTO> validateJoinCombination(@RequestParam("userId") Long userId,
|
|
|
|
|
@RequestParam("activityId") Long activityId,
|
|
|
|
|
@RequestParam("headId") Long headId,
|
|
|
|
|
@RequestParam(value = "headId", required = false) Long headId,
|
|
|
|
|
@RequestParam("skuId") Long skuId,
|
|
|
|
|
@RequestParam("count") Integer count);
|
|
|
|
|
|
|
|
|
|
|