|
@@ -3,6 +3,8 @@ package com.fs.store.domain;
|
|
|
import java.math.BigDecimal;
|
|
|
import com.fs.common.annotation.Excel;
|
|
|
import com.fs.common.core.domain.BaseEntity;
|
|
|
+import lombok.Data;
|
|
|
+import lombok.EqualsAndHashCode;
|
|
|
|
|
|
/**
|
|
|
* 商品对象 fs_store_product
|
|
@@ -10,6 +12,8 @@ import com.fs.common.core.domain.BaseEntity;
|
|
|
* @author fs
|
|
|
* @date 2022-03-15
|
|
|
*/
|
|
|
+@EqualsAndHashCode(callSuper = true)
|
|
|
+@Data
|
|
|
public class FsStoreProduct extends BaseEntity
|
|
|
{
|
|
|
private static final long serialVersionUID = 1L;
|
|
@@ -180,343 +184,4 @@ public class FsStoreProduct extends BaseEntity
|
|
|
@Excel(name = "仓库代码")
|
|
|
private String warehouseCode;
|
|
|
|
|
|
- public Long getWarehouseId() {
|
|
|
- return warehouseId;
|
|
|
- }
|
|
|
-
|
|
|
- public void setWarehouseId(Long warehouseId) {
|
|
|
- this.warehouseId = warehouseId;
|
|
|
- }
|
|
|
-
|
|
|
- public String getWarehouseCode() {
|
|
|
- return warehouseCode;
|
|
|
- }
|
|
|
-
|
|
|
- public void setWarehouseCode(String warehouseCode) {
|
|
|
- this.warehouseCode = warehouseCode;
|
|
|
- }
|
|
|
-
|
|
|
- public Integer getTuiCateId() {
|
|
|
- return tuiCateId;
|
|
|
- }
|
|
|
-
|
|
|
- public void setTuiCateId(Integer tuiCateId) {
|
|
|
- this.tuiCateId = tuiCateId;
|
|
|
- }
|
|
|
-
|
|
|
- public Integer getIsDisplay() {
|
|
|
- return isDisplay;
|
|
|
- }
|
|
|
-
|
|
|
- public void setIsDisplay(Integer isDisplay) {
|
|
|
- this.isDisplay = isDisplay;
|
|
|
- }
|
|
|
-
|
|
|
- public static long getSerialVersionUID() {
|
|
|
- return serialVersionUID;
|
|
|
- }
|
|
|
-
|
|
|
- public Long getProductId() {
|
|
|
- return productId;
|
|
|
- }
|
|
|
-
|
|
|
- public void setProductId(Long productId) {
|
|
|
- this.productId = productId;
|
|
|
- }
|
|
|
-
|
|
|
- public String getImage() {
|
|
|
- return image;
|
|
|
- }
|
|
|
-
|
|
|
- public void setImage(String image) {
|
|
|
- this.image = image;
|
|
|
- }
|
|
|
-
|
|
|
- public String getSliderImage() {
|
|
|
- return sliderImage;
|
|
|
- }
|
|
|
-
|
|
|
- public void setSliderImage(String sliderImage) {
|
|
|
- this.sliderImage = sliderImage;
|
|
|
- }
|
|
|
-
|
|
|
- public String getProductName() {
|
|
|
- return productName;
|
|
|
- }
|
|
|
-
|
|
|
- public void setProductName(String productName) {
|
|
|
- this.productName = productName;
|
|
|
- }
|
|
|
-
|
|
|
- public String getProductInfo() {
|
|
|
- return productInfo;
|
|
|
- }
|
|
|
-
|
|
|
- public void setProductInfo(String productInfo) {
|
|
|
- this.productInfo = productInfo;
|
|
|
- }
|
|
|
-
|
|
|
- public String getKeyword() {
|
|
|
- return keyword;
|
|
|
- }
|
|
|
-
|
|
|
- public void setKeyword(String keyword) {
|
|
|
- this.keyword = keyword;
|
|
|
- }
|
|
|
-
|
|
|
- public String getBarCode() {
|
|
|
- return barCode;
|
|
|
- }
|
|
|
-
|
|
|
- public void setBarCode(String barCode) {
|
|
|
- this.barCode = barCode;
|
|
|
- }
|
|
|
-
|
|
|
- public Long getCateId() {
|
|
|
- return cateId;
|
|
|
- }
|
|
|
-
|
|
|
- public void setCateId(Long cateId) {
|
|
|
- this.cateId = cateId;
|
|
|
- }
|
|
|
-
|
|
|
- public BigDecimal getPrice() {
|
|
|
- return price;
|
|
|
- }
|
|
|
-
|
|
|
- public void setPrice(BigDecimal price) {
|
|
|
- this.price = price;
|
|
|
- }
|
|
|
-
|
|
|
- public BigDecimal getVipPrice() {
|
|
|
- return vipPrice;
|
|
|
- }
|
|
|
-
|
|
|
- public void setVipPrice(BigDecimal vipPrice) {
|
|
|
- this.vipPrice = vipPrice;
|
|
|
- }
|
|
|
-
|
|
|
- public BigDecimal getOtPrice() {
|
|
|
- return otPrice;
|
|
|
- }
|
|
|
-
|
|
|
- public void setOtPrice(BigDecimal otPrice) {
|
|
|
- this.otPrice = otPrice;
|
|
|
- }
|
|
|
-
|
|
|
- public BigDecimal getPostage() {
|
|
|
- return postage;
|
|
|
- }
|
|
|
-
|
|
|
- public void setPostage(BigDecimal postage) {
|
|
|
- this.postage = postage;
|
|
|
- }
|
|
|
-
|
|
|
- public String getUnitName() {
|
|
|
- return unitName;
|
|
|
- }
|
|
|
-
|
|
|
- public void setUnitName(String unitName) {
|
|
|
- this.unitName = unitName;
|
|
|
- }
|
|
|
-
|
|
|
- public Long getSort() {
|
|
|
- return sort;
|
|
|
- }
|
|
|
-
|
|
|
- public void setSort(Long sort) {
|
|
|
- this.sort = sort;
|
|
|
- }
|
|
|
-
|
|
|
- public Long getSales() {
|
|
|
- return sales;
|
|
|
- }
|
|
|
-
|
|
|
- public void setSales(Long sales) {
|
|
|
- this.sales = sales;
|
|
|
- }
|
|
|
-
|
|
|
- public Long getStock() {
|
|
|
- return stock;
|
|
|
- }
|
|
|
-
|
|
|
- public void setStock(Long stock) {
|
|
|
- this.stock = stock;
|
|
|
- }
|
|
|
-
|
|
|
- public Integer getIsShow() {
|
|
|
- return isShow;
|
|
|
- }
|
|
|
-
|
|
|
- public void setIsShow(Integer isShow) {
|
|
|
- this.isShow = isShow;
|
|
|
- }
|
|
|
-
|
|
|
- public Integer getIsHot() {
|
|
|
- return isHot;
|
|
|
- }
|
|
|
-
|
|
|
- public void setIsHot(Integer isHot) {
|
|
|
- this.isHot = isHot;
|
|
|
- }
|
|
|
-
|
|
|
- public Integer getIsBenefit() {
|
|
|
- return isBenefit;
|
|
|
- }
|
|
|
-
|
|
|
- public void setIsBenefit(Integer isBenefit) {
|
|
|
- this.isBenefit = isBenefit;
|
|
|
- }
|
|
|
-
|
|
|
- public Integer getIsBest() {
|
|
|
- return isBest;
|
|
|
- }
|
|
|
-
|
|
|
- public void setIsBest(Integer isBest) {
|
|
|
- this.isBest = isBest;
|
|
|
- }
|
|
|
-
|
|
|
- public Integer getIsNew() {
|
|
|
- return isNew;
|
|
|
- }
|
|
|
-
|
|
|
- public void setIsNew(Integer isNew) {
|
|
|
- this.isNew = isNew;
|
|
|
- }
|
|
|
-
|
|
|
- public String getDescription() {
|
|
|
- return description;
|
|
|
- }
|
|
|
-
|
|
|
- public void setDescription(String description) {
|
|
|
- this.description = description;
|
|
|
- }
|
|
|
-
|
|
|
- public Integer getIsPostage() {
|
|
|
- return isPostage;
|
|
|
- }
|
|
|
-
|
|
|
- public void setIsPostage(Integer isPostage) {
|
|
|
- this.isPostage = isPostage;
|
|
|
- }
|
|
|
-
|
|
|
- public Integer getIsDel() {
|
|
|
- return isDel;
|
|
|
- }
|
|
|
-
|
|
|
- public void setIsDel(Integer isDel) {
|
|
|
- this.isDel = isDel;
|
|
|
- }
|
|
|
-
|
|
|
- public BigDecimal getGiveIntegral() {
|
|
|
- return giveIntegral;
|
|
|
- }
|
|
|
-
|
|
|
- public void setGiveIntegral(BigDecimal giveIntegral) {
|
|
|
- this.giveIntegral = giveIntegral;
|
|
|
- }
|
|
|
-
|
|
|
- public BigDecimal getCost() {
|
|
|
- return cost;
|
|
|
- }
|
|
|
-
|
|
|
- public void setCost(BigDecimal cost) {
|
|
|
- this.cost = cost;
|
|
|
- }
|
|
|
-
|
|
|
- public Integer getIsGood() {
|
|
|
- return isGood;
|
|
|
- }
|
|
|
-
|
|
|
- public void setIsGood(Integer isGood) {
|
|
|
- this.isGood = isGood;
|
|
|
- }
|
|
|
-
|
|
|
- public Long getBrowse() {
|
|
|
- return browse;
|
|
|
- }
|
|
|
-
|
|
|
- public void setBrowse(Long browse) {
|
|
|
- this.browse = browse;
|
|
|
- }
|
|
|
-
|
|
|
- public String getCodePath() {
|
|
|
- return codePath;
|
|
|
- }
|
|
|
-
|
|
|
- public void setCodePath(String codePath) {
|
|
|
- this.codePath = codePath;
|
|
|
- }
|
|
|
-
|
|
|
- public Integer getTempId() {
|
|
|
- return tempId;
|
|
|
- }
|
|
|
-
|
|
|
- public void setTempId(Integer tempId) {
|
|
|
- this.tempId = tempId;
|
|
|
- }
|
|
|
-
|
|
|
- public Integer getSpecType() {
|
|
|
- return specType;
|
|
|
- }
|
|
|
-
|
|
|
- public void setSpecType(Integer specType) {
|
|
|
- this.specType = specType;
|
|
|
- }
|
|
|
-
|
|
|
- public Integer getIsIntegral() {
|
|
|
- return isIntegral;
|
|
|
- }
|
|
|
-
|
|
|
- public void setIsIntegral(Integer isIntegral) {
|
|
|
- this.isIntegral = isIntegral;
|
|
|
- }
|
|
|
-
|
|
|
- public Long getIntegral() {
|
|
|
- return integral;
|
|
|
- }
|
|
|
-
|
|
|
- public void setIntegral(Long integral) {
|
|
|
- this.integral = integral;
|
|
|
- }
|
|
|
-
|
|
|
- public Integer getProductType() {
|
|
|
- return productType;
|
|
|
- }
|
|
|
-
|
|
|
- public void setProductType(Integer productType) {
|
|
|
- this.productType = productType;
|
|
|
- }
|
|
|
-
|
|
|
- public String getPrescribeCode() {
|
|
|
- return prescribeCode;
|
|
|
- }
|
|
|
-
|
|
|
- public void setPrescribeCode(String prescribeCode) {
|
|
|
- this.prescribeCode = prescribeCode;
|
|
|
- }
|
|
|
-
|
|
|
- public String getPrescribeSpec() {
|
|
|
- return prescribeSpec;
|
|
|
- }
|
|
|
-
|
|
|
- public void setPrescribeSpec(String prescribeSpec) {
|
|
|
- this.prescribeSpec = prescribeSpec;
|
|
|
- }
|
|
|
-
|
|
|
- public String getPrescribeFactory() {
|
|
|
- return prescribeFactory;
|
|
|
- }
|
|
|
-
|
|
|
- public void setPrescribeFactory(String prescribeFactory) {
|
|
|
- this.prescribeFactory = prescribeFactory;
|
|
|
- }
|
|
|
-
|
|
|
- public String getPrescribeName() {
|
|
|
- return prescribeName;
|
|
|
- }
|
|
|
-
|
|
|
- public void setPrescribeName(String prescribeName) {
|
|
|
- this.prescribeName = prescribeName;
|
|
|
- }
|
|
|
}
|