商品模块

This commit is contained in:
Tankaikai
2025-03-10 16:31:01 +08:00
parent cdec6b0b02
commit 4e63fbf1c8
3 changed files with 58 additions and 7 deletions

View File

@@ -101,5 +101,37 @@ public class ProdSkuDTO implements Serializable {
* 逻辑删除字段 0否 1 删除
*/
private Integer isDel;
/**
* sku名称
*/
private String name;
/**
* 是否上架别名
*/
private Integer isSale;
/**
* 是否售罄别名
*/
private Integer isSoldStock;
/**
* 售价别名
*/
private BigDecimal lowPrice;
public String getName() {
return specInfo;
}
public Integer getIsSale() {
return isGrounding;
}
public Integer getIsSoldStock() {
return isPauseSale;
}
public BigDecimal getLowPrice() {
return salePrice;
}
}