| | |
| | | package com.ruoyi.system.api.domain.dto; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.ruoyi.common.core.web.page.BasePage; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | import java.util.List; |
| | | |
| | | @Data |
| | | @ApiModel(value = "首页商品传输对象", description = "首页商品传输对象") |
| | | public class HomeGoodsSkuDTO extends BasePage { |
| | | |
| | | @ApiModelProperty(value = "商品id") |
| | | private Long id; |
| | | |
| | | @ApiModelProperty(value = "商品名称") |
| | | private String skuName; |
| | |
| | | @ApiModelProperty(value = "会员id") |
| | | private Long memberId; |
| | | |
| | | @ApiModelProperty(value = "提交标识") |
| | | private String formId; |
| | | |
| | | |
| | | @ApiModelProperty(value = "商品skuIds") |
| | | private List<Long> goodsSkuIds; |
| | | |
| | | } |