package com.nova.sankuai.domain.api.yangqianguan.vo; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import lombok.Data; /** * @author DELL */ @ApiModel(value = "步骤集合") @Data public class StepVo { @ApiModelProperty(value = "类型 1:身份证 2:活体 3:绑卡 4:协议 5:短信验证") private Integer type; @ApiModelProperty(value = "信息类型 1:单项信息, 2:整体信息") private Integer info_type; }