CallBack.java 673 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 16 17 18 19 20 21 22 23 24

/**
 * @Description TODO
 * @Author wgd
 * @Date 2022/3/3 8:48
 */
@Data
public class CallBack implements Serializable {
    private static final long serialVersionUID = 61499950876094044L;
    private String status;
    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
25 26
    private String endorsement_file;
    private OrderImportInfo order_import_info;
翁国栋 committed
27
}