fwq
2023-07-18 133895e544e1ff3e303a57986a4bf58a758e9e61
提交 | 用户 | age
d0d880 1 package com.hz.his.dto.marketing.common;
F 2
3 import lombok.Data;
4
5 /**
6  * 营销助手请求回调参数
7  * @author fwq
8  */
9 @Data
10 public class MarketingReturnDto{
11
12     /**审核结果 agree为通过,reject为不通过*/
13     public static final String AGREE = "agree";
14     public static final String REJECT = "reject";
15     /**审核结果*/
16     private String result;
17     /**返回信息*/
18     private String resultMsg;
19     /**唯一标识*/
20     private String uniqueId;
21     /**审核标识*/
22     private String applyId;
23     /**审核人标识*/
24     private String opId;
25     /**审核人名称*/
26     private String opMan;
27     /**审核意见*/
28     private String applyRemarks;
133895 29     /**是否直接通过:0否1是*/
F 30     private Integer isPass;
d0d880 31
F 32
33
34 }