package com.caimei.modules.weisha.entity; /** * Description * * @author : Charles * @date : 2023/5/6 */ public class CmOrganizeSku { private Integer id; /** * 商品Id */ private Integer productId; /** * 外部商城SkuId */ private Integer organId; /** * 采美SkuId */ private Integer skuId; /** * 外部商城productId */ private Integer mallProductId; /** * 外部商城起订量 */ private Integer minBuyNumber; /** * 外部商城售价 */ private Double price; /** * 包装规格 */ private String unit; /** * 库存 */ private Integer stock; /** * 机构价 */ private String clubPrice; /** * 成本类型:1固定成本 2比例成本 */ private String costCheckFlag; /** * 成本价 */ private Double costPrice; /** * 采美起订量 */ private Integer cmMinBuyNumber; /** * 分账组织佣金比例 */ private Double organizePercent; /** * 分账供应商成本比例 */ private Double shopPercent; /** * 分账采美佣金比例 */ private Double cmPercent; public Integer getId() { return id; } public void setId(Integer id) { this.id = id; } public Integer getProductId() { return productId; } public void setProductId(Integer productId) { this.productId = productId; } public Integer getOrganId() { return organId; } public void setOrganId(Integer organId) { this.organId = organId; } public Integer getSkuId() { return skuId; } public void setSkuId(Integer skuId) { this.skuId = skuId; } public Integer getMallProductId() { return mallProductId; } public void setMallProductId(Integer mallProductId) { this.mallProductId = mallProductId; } public Integer getMinBuyNumber() { return minBuyNumber; } public void setMinBuyNumber(Integer minBuyNumber) { this.minBuyNumber = minBuyNumber; } public Double getPrice() { return price; } public void setPrice(Double price) { this.price = price; } public String getUnit() { return unit; } public void setUnit(String unit) { this.unit = unit; } public String getClubPrice() { return clubPrice; } public void setClubPrice(String clubPrice) { this.clubPrice = clubPrice; } public String getCostCheckFlag() { return costCheckFlag; } public void setCostCheckFlag(String costCheckFlag) { this.costCheckFlag = costCheckFlag; } public Double getCostPrice() { return costPrice; } public void setCostPrice(Double costPrice) { this.costPrice = costPrice; } public Integer getCmMinBuyNumber() { return cmMinBuyNumber; } public void setCmMinBuyNumber(Integer cmMinBuyNumber) { this.cmMinBuyNumber = cmMinBuyNumber; } public Double getOrganizePercent() { return organizePercent; } public void setOrganizePercent(Double organizePercent) { this.organizePercent = organizePercent; } public Double getShopPercent() { return shopPercent; } public void setShopPercent(Double shopPercent) { this.shopPercent = shopPercent; } public Double getCmPercent() { return cmPercent; } public void setCmPercent(Double cmPercent) { this.cmPercent = cmPercent; } }