|  |  |  | 
|---|
|  |  |  | MallGoodsCoupon mallGoodsCoupon = mallGoodsCouponMapper.selectById(mallMemberCoupon.getCouponId()); | 
|---|
|  |  |  | mallMemberCouponVo.setCostAmount(mallGoodsCoupon.getCostAmount()); | 
|---|
|  |  |  | mallMemberCouponVo.setRealAmount(mallGoodsCoupon.getRealAmount()); | 
|---|
|  |  |  | mallMemberCouponVo.setType(mallGoodsCoupon.getType()); | 
|---|
|  |  |  | return new FebsResponse().success().data(mallMemberCouponVo); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | 
|---|
|  |  |  | @ApiModelProperty(value = "1:待使用 2:已使用 3:已过期") | 
|---|
|  |  |  | private Integer state; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | private Integer type; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @ApiModelProperty(value = "满足金额") | 
|---|
|  |  |  | private BigDecimal costAmount; | 
|---|
|  |  |  |  | 
|---|