| | |
| | | @ApiModelProperty(value = "折扣卷满减上限金额") |
| | | private BigDecimal maxPrice; |
| | | |
| | | @ApiModelProperty(value = "过期通知:0=未通知;1=已通知", example = "1") |
| | | private Integer noticeStatus; |
| | | |
| | | @ApiModelProperty(value = "通知时间", example = "1") |
| | | private Date noticeTime; |
| | | |
| | | @ApiModelProperty(value = "昵称") |
| | | @TableField(exist = false) |
| | | @ExcelColumn(name="用户",width = 10,index = 1) |
| | |
| | | insert.setMemberId(member.getId()); |
| | | insert.setShopId(coupon.getShopId()); |
| | | insert.setType(coupon.getType()); |
| | | insert.setCouponType(coupon.getType()); |
| | | insert.setCouponType(coupon.getCouponType()); |
| | | insert.setLimitPrice(coupon.getLimitPrice()); |
| | | insert.setPrice(coupon.getPrice()); |
| | | if(Constants.equalsObject(coupon.getUseType(),Constants.ZERO)){ |
| | |
| | | insert.setApplyIds(coupon.getApplyIds()); |
| | | insert.setApplyType(coupon.getApplyType()); |
| | | insert.setCouponId(coupon.getId()); |
| | | insert.setMaxPrice(coupon.getMaxPrice()); |
| | | return insert; |
| | | |
| | | } |