old mode 100644
new mode 100755
| | |
| | | package com.java110.dto.productSpecValue; |
| | | |
| | | import com.java110.dto.PageDto; |
| | | import com.java110.dto.product.ProductSpecDetailDto; |
| | | |
| | | import java.io.Serializable; |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @ClassName FloorDto |
| | |
| | | public class ProductSpecValueDto extends PageDto implements Serializable { |
| | | |
| | | private String specId; |
| | | private String specName; |
| | | private String valueId; |
| | | private String productId; |
| | | private String[] productIds; |
| | | private String price; |
| | | private String otPrice; |
| | | private String costPrice; |
| | |
| | | private String storeId; |
| | | private String stock; |
| | | private String sales; |
| | | private String isDefault; |
| | | |
| | | |
| | | private Date createTime; |
| | | |
| | | private String statusCd = "0"; |
| | | |
| | | private List<ProductSpecDetailDto> productSpecDetails; |
| | | |
| | | |
| | | public String getSpecId() { |
| | |
| | | public void setStatusCd(String statusCd) { |
| | | this.statusCd = statusCd; |
| | | } |
| | | |
| | | public String[] getProductIds() { |
| | | return productIds; |
| | | } |
| | | |
| | | public void setProductIds(String[] productIds) { |
| | | this.productIds = productIds; |
| | | } |
| | | |
| | | public List<ProductSpecDetailDto> getProductSpecDetails() { |
| | | return productSpecDetails; |
| | | } |
| | | |
| | | public void setProductSpecDetails(List<ProductSpecDetailDto> productSpecDetails) { |
| | | this.productSpecDetails = productSpecDetails; |
| | | } |
| | | |
| | | public String getSpecName() { |
| | | return specName; |
| | | } |
| | | |
| | | public void setSpecName(String specName) { |
| | | this.specName = specName; |
| | | } |
| | | |
| | | public String getIsDefault() { |
| | | return isDefault; |
| | | } |
| | | |
| | | public void setIsDefault(String isDefault) { |
| | | this.isDefault = isDefault; |
| | | } |
| | | } |