Sunshine
2024-11-04 177f10973fd9bc1f0930369bb086ad9f0053440c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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;
}