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
28
29
30
31
32
33
34
| package com.hz.his.dto.marketing.common;
|
| import lombok.Data;
|
| /**
| * 营销助手请求回调参数
| * @author fwq
| */
| @Data
| public class MarketingReturnDto{
|
| /**审核结果 agree为通过,reject为不通过*/
| public static final String AGREE = "agree";
| public static final String REJECT = "reject";
| /**审核结果*/
| private String result;
| /**返回信息*/
| private String resultMsg;
| /**唯一标识*/
| private String uniqueId;
| /**审核标识*/
| private String applyId;
| /**审核人标识*/
| private String opId;
| /**审核人名称*/
| private String opMan;
| /**审核意见*/
| private String applyRemarks;
| /**是否直接通过:0否1是*/
| private Integer isPass;
|
|
|
| }
|
|