Merge remote-tracking branch 'yudao/feature/mall_product' into feature/mall_product
commit
b44ad3a0f7
@ -0,0 +1,110 @@
|
||||
package cn.iocoder.yudao.module.promotion.controller.app.bargain;
|
||||
|
||||
import cn.iocoder.yudao.framework.common.pojo.CommonResult;
|
||||
import cn.iocoder.yudao.framework.common.pojo.PageParam;
|
||||
import cn.iocoder.yudao.framework.common.pojo.PageResult;
|
||||
import cn.iocoder.yudao.framework.common.util.date.LocalDateTimeUtils;
|
||||
import cn.iocoder.yudao.module.promotion.controller.app.bargain.vo.activity.AppBargainActivityDetailRespVO;
|
||||
import cn.iocoder.yudao.module.promotion.controller.app.bargain.vo.activity.AppBargainActivityRespVO;
|
||||
import io.swagger.v3.oas.annotations.Operation;
|
||||
import io.swagger.v3.oas.annotations.tags.Tag;
|
||||
import org.springframework.validation.annotation.Validated;
|
||||
import org.springframework.web.bind.annotation.GetMapping;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RequestParam;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
|
||||
import java.time.Duration;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
import static cn.iocoder.yudao.framework.common.pojo.CommonResult.success;
|
||||
|
||||
@Tag(name = "用户 App - 砍价活动")
|
||||
@RestController
|
||||
@RequestMapping("/promotion/bargain-activity")
|
||||
@Validated
|
||||
public class AppBargainActivityController {
|
||||
|
||||
@GetMapping("/page")
|
||||
@Operation(summary = "获得砍价活动活动") // TODO 芋艿:只查询进行中,且在时间范围内的
|
||||
// TODO 芋艿:缺少 swagger 注解
|
||||
public CommonResult<PageResult<AppBargainActivityRespVO>> getBargainActivityPage(PageParam pageReqVO) {
|
||||
List<AppBargainActivityRespVO> activityList = new ArrayList<>();
|
||||
AppBargainActivityRespVO activity1 = new AppBargainActivityRespVO();
|
||||
activity1.setId(1L);
|
||||
activity1.setName("618 大砍价");
|
||||
activity1.setSpuId(2048L);
|
||||
activity1.setPicUrl("https://demo26.crmeb.net/uploads/attach/2021/11/15/a79f5d2ea6bf0c3c11b2127332dfe2df.jpg");
|
||||
activity1.setMarketPrice(50);
|
||||
activity1.setBargainPrice(100);
|
||||
activity1.setStartTime(LocalDateTimeUtils.addTime(Duration.ofDays(-2)));
|
||||
activity1.setEndTime(LocalDateTimeUtils.addTime(Duration.ofDays(1)));
|
||||
activity1.setStock(10);
|
||||
activityList.add(activity1);
|
||||
|
||||
AppBargainActivityRespVO activity2 = new AppBargainActivityRespVO();
|
||||
activity2.setId(2L);
|
||||
activity2.setName("双十一砍价");
|
||||
activity2.setSpuId(4096L);
|
||||
activity2.setPicUrl("https://thirdwx.qlogo.cn/mmopen/vi_32/Q0j4TwGTfTKXMYJOomfp7cebz3cIeb8sHk3GGSIJtWEgREe3j7J1WoAbTvIOicpcNdFkWAziatBSMod8b5RyS4CQ/132");
|
||||
activity2.setMarketPrice(100);
|
||||
activity2.setBargainPrice(200);
|
||||
activity2.setStartTime(LocalDateTimeUtils.addTime(Duration.ofDays(-2)));
|
||||
activity2.setEndTime(LocalDateTimeUtils.addTime(Duration.ofDays(1)));
|
||||
activity2.setStock(0);
|
||||
activityList.add(activity2);
|
||||
|
||||
return success(new PageResult<>(activityList, 10L));
|
||||
}
|
||||
|
||||
@GetMapping("/list")
|
||||
@Operation(summary = "获得砍价活动列表", description = "用于小程序首页")
|
||||
// TODO 芋艿:增加 Spring Cache
|
||||
// TODO 芋艿:缺少 swagger 注解
|
||||
public CommonResult<List<AppBargainActivityRespVO>> getBargainActivityList(
|
||||
@RequestParam(name = "count", defaultValue = "6") Integer count) {
|
||||
List<AppBargainActivityRespVO> activityList = new ArrayList<>();
|
||||
AppBargainActivityRespVO activity1 = new AppBargainActivityRespVO();
|
||||
activity1.setId(1L);
|
||||
activity1.setName("618 大砍价");
|
||||
activity1.setSpuId(2048L);
|
||||
activity1.setPicUrl("https://demo26.crmeb.net/uploads/attach/2021/11/15/a79f5d2ea6bf0c3c11b2127332dfe2df.jpg");
|
||||
activity1.setMarketPrice(50);
|
||||
activity1.setBargainPrice(100);
|
||||
activityList.add(activity1);
|
||||
|
||||
AppBargainActivityRespVO activity2 = new AppBargainActivityRespVO();
|
||||
activity2.setId(2L);
|
||||
activity2.setName("双十一砍价");
|
||||
activity2.setSpuId(4096L);
|
||||
activity2.setPicUrl("https://thirdwx.qlogo.cn/mmopen/vi_32/Q0j4TwGTfTKXMYJOomfp7cebz3cIeb8sHk3GGSIJtWEgREe3j7J1WoAbTvIOicpcNdFkWAziatBSMod8b5RyS4CQ/132");
|
||||
activity2.setMarketPrice(100);
|
||||
activity2.setBargainPrice(200);
|
||||
activityList.add(activity2);
|
||||
|
||||
return success(activityList);
|
||||
}
|
||||
|
||||
@GetMapping("/get-detail")
|
||||
@Operation(summary = "获得砍价活动详情")
|
||||
// TODO 芋艿:缺少 swagger 注解
|
||||
public CommonResult<AppBargainActivityDetailRespVO> getBargainActivityDetail(@RequestParam("id") Long id) {
|
||||
AppBargainActivityDetailRespVO activity = new AppBargainActivityDetailRespVO();
|
||||
activity.setId(2L);
|
||||
activity.setName("618 大砍价");
|
||||
activity.setSpuId(2048L);
|
||||
activity.setPicUrl("https://demo26.crmeb.net/uploads/attach/2021/11/15/a79f5d2ea6bf0c3c11b2127332dfe2df.jpg");
|
||||
activity.setMarketPrice(50);
|
||||
activity.setBargainPrice(100);
|
||||
activity.setStock(10);
|
||||
activity.setUnitName("件");
|
||||
activity.setPrice(40);
|
||||
activity.setStartTime(LocalDateTimeUtils.addTime(Duration.ofDays(-2)));
|
||||
activity.setEndTime(LocalDateTimeUtils.addTime(Duration.ofDays(-10)));
|
||||
activity.setDescription("我吃西红柿");
|
||||
activity.setSuccessCount(10);
|
||||
return success(activity);
|
||||
}
|
||||
|
||||
}
|
||||
@ -0,0 +1,54 @@
|
||||
package cn.iocoder.yudao.module.promotion.controller.app.bargain.vo.activity;
|
||||
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
import java.time.LocalDateTime;
|
||||
|
||||
@Schema(description = "用户 App - 砍价活动的明细 Response VO")
|
||||
@Data
|
||||
public class AppBargainActivityDetailRespVO {
|
||||
|
||||
@Schema(description = "砍价活动编号", required = true, example = "1024")
|
||||
private Long id;
|
||||
|
||||
@Schema(description = "砍价活动名称", required = true, example = "618 大砍价")
|
||||
private String name;
|
||||
|
||||
@Schema(description = "活动开始时间", required = true)
|
||||
private LocalDateTime startTime;
|
||||
|
||||
@Schema(description = "活动结束时间", required = true)
|
||||
private LocalDateTime endTime;
|
||||
|
||||
@Schema(description = "商品 SPU 编号", required = true, example = "2048")
|
||||
private Long spuId;
|
||||
|
||||
@Schema(description = "商品 SKU 编号", required = true, example = "1024")
|
||||
private Long skuId;
|
||||
|
||||
@Schema(description = "商品价格,单位:分", required = true, example = "100")
|
||||
private Integer price;
|
||||
|
||||
@Schema(description = "商品描述", required = true, example = "我要吃西红柿")
|
||||
private String description;
|
||||
|
||||
@Schema(description = "砍价库存", required = true, example = "512")
|
||||
private Integer stock;
|
||||
|
||||
@Schema(description = "商品图片", required = true, example = "4096") // 从 SPU 的 picUrl 读取
|
||||
private String picUrl;
|
||||
|
||||
@Schema(description = "商品市场价,单位:分", required = true, example = "50") // 从 SPU 的 marketPrice 读取
|
||||
private Integer marketPrice;
|
||||
|
||||
@Schema(description = "商品单位", required = true, example = "个") // 从 SPU 的 unit 读取,然后转换
|
||||
private String unitName;
|
||||
|
||||
@Schema(description = "砍价最低金额,单位:分", required = true, example = "100") // 从砍价商品里取最低价
|
||||
private Integer bargainPrice;
|
||||
|
||||
@Schema(description = "砍价成功数量", required = true, example = "100")
|
||||
private Integer successCount;
|
||||
|
||||
}
|
||||
@ -0,0 +1,42 @@
|
||||
package cn.iocoder.yudao.module.promotion.controller.app.bargain.vo.activity;
|
||||
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
import java.time.LocalDateTime;
|
||||
|
||||
@Schema(description = "用户 App - 砍价活动 Response VO")
|
||||
@Data
|
||||
public class AppBargainActivityRespVO {
|
||||
|
||||
@Schema(description = "砍价活动编号", required = true, example = "1024")
|
||||
private Long id;
|
||||
|
||||
@Schema(description = "砍价活动名称", required = true, example = "618 大砍价")
|
||||
private String name;
|
||||
|
||||
@Schema(description = "活动开始时间", required = true)
|
||||
private LocalDateTime startTime;
|
||||
|
||||
@Schema(description = "活动结束时间", required = true)
|
||||
private LocalDateTime endTime;
|
||||
|
||||
@Schema(description = "商品 SPU 编号", required = true, example = "2048")
|
||||
private Long spuId;
|
||||
|
||||
@Schema(description = "商品 SKU 编号", required = true, example = "1024")
|
||||
private Long skuId;
|
||||
|
||||
@Schema(description = "砍价库存", required = true, example = "512")
|
||||
private Integer stock;
|
||||
|
||||
@Schema(description = "商品图片", required = true, example = "4096") // 从 SPU 的 picUrl 读取
|
||||
private String picUrl;
|
||||
|
||||
@Schema(description = "商品市场价,单位:分", required = true, example = "50") // 从 SPU 的 marketPrice 读取
|
||||
private Integer marketPrice;
|
||||
|
||||
@Schema(description = "砍价最低金额,单位:分", required = true, example = "100") // 从砍价商品里取最低价
|
||||
private Integer bargainPrice;
|
||||
|
||||
}
|
||||
@ -0,0 +1,33 @@
|
||||
package cn.iocoder.yudao.module.promotion.controller.app.bargain.vo.record;
|
||||
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
@Schema(description = "用户 App - 砍价记录的简要概括 Response VO")
|
||||
@Data
|
||||
public class AppBargainRecordSummaryRespVO {
|
||||
|
||||
@Schema(description = "砍价用户数量", required = true, example = "1024")
|
||||
private Integer userCount;
|
||||
|
||||
@Schema(description = "成功砍价的记录", required = true) // 只返回最近的 7 个
|
||||
private List<Record> successRecords;
|
||||
|
||||
@Schema(description = "成功砍价记录")
|
||||
@Data
|
||||
public static class Record {
|
||||
|
||||
@Schema(description = "用户昵称", required = true, example = "王**")
|
||||
private String nickname;
|
||||
|
||||
@Schema(description = "用户头像", required = true, example = "https://www.iocoder.cn/xxx.jpg")
|
||||
private String avatar;
|
||||
|
||||
@Schema(description = "活动名称", required = true, example = "天蚕土豆")
|
||||
private String activityName;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
Loading…
Reference in New Issue