商品模块
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user