fwq
2024-06-07 972d9e55a3ab59cc7523f6893eb517db617810e8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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 couponNum = 0;
    /**邀请的人数*/
    private Integer inviteeNum = 0;
    /**分享的人数*/
    private Integer shareNum = 0;
 
}