Merge branch 'feature-商品起售数量' into dev

This commit is contained in:
2024-07-11 15:41:49 +08:00
7 changed files with 53 additions and 86 deletions

View File

@@ -24,6 +24,8 @@ public class TbProductSku implements Serializable {
private BigDecimal guidePrice;
private Integer suit;
private BigDecimal strategyPrice;
private Double stockNumber;
@@ -47,6 +49,7 @@ public class TbProductSku implements Serializable {
private Long updatedAt;
private Integer isPauseSale = 0;
private Integer isDel;
private static final long serialVersionUID = 1L;
@@ -186,6 +189,14 @@ public class TbProductSku implements Serializable {
this.realSalesNumber = realSalesNumber;
}
public Integer getSuit() {
return suit;
}
public void setSuit(Integer suit) {
this.suit = suit;
}
public BigDecimal getFirstShared() {
return firstShared;
}
@@ -225,4 +236,12 @@ public class TbProductSku implements Serializable {
public void setIsPauseSale(Integer isPauseSale) {
this.isPauseSale = isPauseSale;
}
public Integer getIsDel() {
return isDel;
}
public void setIsDel(Integer isDel) {
this.isDel = isDel;
}
}