CallBack.java 989 Bytes
Newer Older
翁国栋 committed
1 2 3 4 5
package cn.timer.api.bean.insure;

import lombok.Data;

import java.io.Serializable;
翁国栋 committed
6
import java.util.List;
翁国栋 committed
7 8 9 10 11 12 13 14 15

/**
 * @Description TODO
 * @Author wgd
 * @Date 2022/3/3 8:48
 */
@Data
public class CallBack implements Serializable {
    private static final long serialVersionUID = 61499950876094044L;
翁国栋 committed
16 17 18 19 20
    /**
     * 0失败 1成功
     * 保全复核回调:0代表核保失败,1代表核保成功,核保成功才可调用支付
     * 保全批单回调:0代表保全失败,1代表保全成功
     */
翁国栋 committed
21
    private String status;
翁国栋 committed
22 23 24 25 26
    /**
     * 1保全复核回调
     * 2保全批单回调
     */
    private String callback_type;
翁国栋 committed
27 28 29 30 31 32 33 34
    private String policy_status;
    private String err_msg;
    private String policy_no;
    private String serial_number;
    private String quote_trans_id;
    private String serial_no;
    private String policy_file;
    private String total_expenditure;
翁国栋 committed
35 36
    private String endorsement_file;
    private OrderImportInfo order_import_info;
翁国栋 committed
37
}