Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
wwwanlingxiao
mall
Commits
f6bf065b
Commit
f6bf065b
authored
Mar 04, 2022
by
macro
Browse files
Update PromotionProduct.java
parent
ba28bcb7
Changes
1
Hide whitespace changes
Inline
Side-by-side
mall-portal/src/main/java/com/macro/mall/portal/domain/PromotionProduct.java
View file @
f6bf065b
...
...
@@ -4,6 +4,8 @@ import com.macro.mall.model.PmsProduct;
import
com.macro.mall.model.PmsProductFullReduction
;
import
com.macro.mall.model.PmsProductLadder
;
import
com.macro.mall.model.PmsSkuStock
;
import
lombok.Getter
;
import
lombok.Setter
;
import
java.util.List
;
...
...
@@ -11,6 +13,8 @@ import java.util.List;
* 促销商品信息,包括sku、打折优惠、满减优惠
* Created by macro on 2018/8/27.
*/
@Getter
@Setter
public
class
PromotionProduct
extends
PmsProduct
{
//商品库存信息
private
List
<
PmsSkuStock
>
skuStockList
;
...
...
@@ -18,28 +22,4 @@ public class PromotionProduct extends PmsProduct {
private
List
<
PmsProductLadder
>
productLadderList
;
//商品满减信息
private
List
<
PmsProductFullReduction
>
productFullReductionList
;
public
List
<
PmsSkuStock
>
getSkuStockList
()
{
return
skuStockList
;
}
public
void
setSkuStockList
(
List
<
PmsSkuStock
>
skuStockList
)
{
this
.
skuStockList
=
skuStockList
;
}
public
List
<
PmsProductLadder
>
getProductLadderList
()
{
return
productLadderList
;
}
public
void
setProductLadderList
(
List
<
PmsProductLadder
>
productLadderList
)
{
this
.
productLadderList
=
productLadderList
;
}
public
List
<
PmsProductFullReduction
>
getProductFullReductionList
()
{
return
productFullReductionList
;
}
public
void
setProductFullReductionList
(
List
<
PmsProductFullReduction
>
productFullReductionList
)
{
this
.
productFullReductionList
=
productFullReductionList
;
}
}
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment