mitao
2024-09-21 f44e4d609e7efaed9eac545137970b1e334f8106
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.ruoyi.order.vo;
 
import com.ruoyi.common.core.web.page.BasePage;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel(value = "首页商品传输对象", description = "首页商品传输对象")
public class HomeGoodsSkuDTO1 extends BasePage {
    @ApiModelProperty(value = "商品名称")
    private String skuName;
 
    @ApiModelProperty(value = "会员id")
    private Long memberId;
}