xiaogang
2022-04-12 b61309edd49fca3ca2e7572d67b2d67ffe292ce6
java110-bean/src/main/java/com/java110/dto/product/ProductDto.java
old mode 100644 new mode 100755
@@ -15,7 +15,7 @@
 * @Version 1.0
 * add by wuxw 2019/4/24
 **/
public class ProductDto extends PageDto implements Serializable {
public class ProductDto extends ProductActivityDto implements Serializable {
    private String productId;
    private String unitName;
@@ -26,6 +26,7 @@
    private String postage;
    private String prodName;
    private String state;
    private String stateName;
    private String keyword;
    private String prodDesc;
    private String categoryId;
@@ -41,6 +42,8 @@
    private List<String> carouselFigurePhotos;
    private List<ProductSpecValueDto> productSpecValues;
    private ProductSpecValueDto defaultSpecValue;
    private Date createTime;
@@ -216,4 +219,20 @@
    public void setSales(String sales) {
        this.sales = sales;
    }
    public String getStateName() {
        return stateName;
    }
    public void setStateName(String stateName) {
        this.stateName = stateName;
    }
    public ProductSpecValueDto getDefaultSpecValue() {
        return defaultSpecValue;
    }
    public void setDefaultSpecValue(ProductSpecValueDto defaultSpecValue) {
        this.defaultSpecValue = defaultSpecValue;
    }
}