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
e5811f5c
Commit
e5811f5c
authored
Mar 06, 2022
by
macro
Browse files
Update SmsCouponHistoryDetail.java
parent
f6bf065b
Changes
1
Hide whitespace changes
Inline
Side-by-side
mall-portal/src/main/java/com/macro/mall/portal/domain/SmsCouponHistoryDetail.java
View file @
e5811f5c
...
...
@@ -4,6 +4,9 @@ import com.macro.mall.model.SmsCoupon;
import
com.macro.mall.model.SmsCouponHistory
;
import
com.macro.mall.model.SmsCouponProductCategoryRelation
;
import
com.macro.mall.model.SmsCouponProductRelation
;
import
io.swagger.annotations.ApiModelProperty
;
import
lombok.Getter
;
import
lombok.Setter
;
import
java.util.List
;
...
...
@@ -11,35 +14,13 @@ import java.util.List;
* 优惠券领取历史详情(包括优惠券信息和关联关系)
* Created by macro on 2018/8/29.
*/
@Getter
@Setter
public
class
SmsCouponHistoryDetail
extends
SmsCouponHistory
{
//
相关优惠券信息
@ApiModelProperty
(
"
相关优惠券信息
"
)
private
SmsCoupon
coupon
;
//
优惠券关联商品
@ApiModelProperty
(
"
优惠券关联商品
"
)
private
List
<
SmsCouponProductRelation
>
productRelationList
;
//
优惠券关联商品分类
@ApiModelProperty
(
"
优惠券关联商品分类
"
)
private
List
<
SmsCouponProductCategoryRelation
>
categoryRelationList
;
public
SmsCoupon
getCoupon
()
{
return
coupon
;
}
public
void
setCoupon
(
SmsCoupon
coupon
)
{
this
.
coupon
=
coupon
;
}
public
List
<
SmsCouponProductRelation
>
getProductRelationList
()
{
return
productRelationList
;
}
public
void
setProductRelationList
(
List
<
SmsCouponProductRelation
>
productRelationList
)
{
this
.
productRelationList
=
productRelationList
;
}
public
List
<
SmsCouponProductCategoryRelation
>
getCategoryRelationList
()
{
return
categoryRelationList
;
}
public
void
setCategoryRelationList
(
List
<
SmsCouponProductCategoryRelation
>
categoryRelationList
)
{
this
.
categoryRelationList
=
categoryRelationList
;
}
}
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