Commit 09b19771 by jianan

新单跟进v2

parent 6ef9ccd5
package com.yd.csf.service.vo;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import java.io.Serializable;
/**
* 保单号查询响应视图
*/
@Data
@Schema(description = "保单号查询响应")
public class PolicyNumberResponseVO implements Serializable {
private static final long serialVersionUID = 1L;
/**
* 保单号
*/
@Schema(description = "保单号")
private String policyNo;
/**
* 保险公司
*/
@Schema(description = "保险公司")
private String insuranceCompany;
/**
* 保险公司业务id
*/
@Schema(description = "保险公司业务id")
private String insuranceCompanyBizId;
/**
* 受保人
*/
@Schema(description = "受保人")
private String insured;
/**
* 受保人业务id
*/
@Schema(description = "受保人业务id")
private String insuredBizId;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment