GoodsFormDTO.java 852 字节
Newer Older
H
.  
haoxr 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
package com.youlai.mall.pms.pojo.dto.admin;

import com.youlai.mall.pms.pojo.entity.PmsSku;
import lombok.Data;
import java.util.List;

/**
 * @author <a href="mailto:xianrui0365@163.com">xianrui</a>
 */
@Data
public class GoodsFormDTO {

    private Long id;
    private String name;
    private Long categoryId;
    private Long brandId;
有来技术 已提交
17
    private Long originPrice;
H
.  
haoxr 已提交
18 19
    private Long price;
    private String picUrl;
G
Gadfly 已提交
20
    private String[] subPicUrls;
H
.  
haoxr 已提交
21 22 23
    private String description;
    private String detail;

H
.  
haoxr 已提交
24 25 26
    private List<AttributeValue> attrList;

    private List<AttributeValue> specList;
H
.  
haoxr 已提交
27 28 29

    private List<PmsSku> skuList;

H
.  
haoxr 已提交
30 31 32 33 34 35 36 37 38 39 40 41 42 43
    @Data
    public static class AttributeValue{

        private Long attributeId;

        private String id;

        private String name;

        private String value;

        private String picUrl;

    }
H
.  
haoxr 已提交
44
}