fwq
2024-06-06 04c7ad9c89002913dd4d906d7701391d0a0c5398
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.hz.phis.vo.order;
 
import lombok.Data;
 
/**
 * @author CJH
 */
@Data
public class OrderActivityVo {
    /**活动页面类型-指定订单标识*/
    private String orderId;
    /**活动页面类型-可空*/
    private Integer activityPageType;
   /**活动区分编号-必填*/
    private String activityPageCode;
    /**his用户-必填*/
    private String userId;
    private String inviteeUserId;
    /**金额的来源类型*/
    private String operationReason;
}