package com.nova.sankuai.domain.api.zhongzan;
|
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
@Data
|
@ApiModel("申请被拒结果")
|
public class ApplyRefuseResultData {
|
|
@ApiModelProperty(value = "订单号", required = true, notes = "格式:长度不超过32个字符。")
|
private String orderNo;
|
|
@ApiModelProperty(value = "审批结论", required = true, notes = "10=>审批通过,40=>审批拒绝,30=>审批中")
|
private Integer conclusion;
|
|
@ApiModelProperty(value = "审批时间", required = true, notes = "审批时间,时间戳,精确到毫秒。")
|
private Long auditTime;
|
|
@ApiModelProperty(value = "审批被拒原因", example = "例如:授信失败")
|
private String failedReason;
|
}
|