package com.hz.phis.vo.order;
|
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
|
/**
|
* @author CJH
|
*/
|
@Data
|
public class OrderActivityReturnVo {
|
/**活动的订单是否已执行:0否1是*/
|
private Integer isExecute = 0;
|
/**是否已下单*/
|
private Integer isOrder = 0;
|
|
/**返赠的增值金*/
|
private BigDecimal incrementMoney = BigDecimal.ZERO;
|
/**返赠的积分*/
|
private BigDecimal integralMoney = BigDecimal.ZERO;
|
/**邀请的人数*/
|
private Integer inviteeNum = 0;
|
|
}
|