Sunshine
2024-11-05 8f7985d7764a0aad24bd593ac5ea47b7fc290961
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
package com.nova.sankuai.domain.api.yangqianguan;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @author weikangdi
 * @create 2022/5/30
 */
@Data
@ApiModel("洋钱罐响应code编码")
public class YqgResultCode {
 
    /**
     * 公共响应code
     */
    @ApiModelProperty(value = "成功")
    public static final int SUCCESS= 0;
    @ApiModelProperty(value = "非法签名")
    public static final int SIGN_ERROR= 20000;
    @ApiModelProperty(value = "内部错误,接口调用失败")
    public static final int SERVER_ERROR= 20001;
    @ApiModelProperty(value = "参数错误")
    public static final int BAD_REQUEST= 20002;
    @ApiModelProperty(value = "请求处理中")
    public static final int REQUEST_PROCESS= 20003;
    @ApiModelProperty(value = "订单状态不一致")
    public static final int ORDER_STATUS_ERROR= 20004;
 
    /**
     * 授信申请相关业务异常
     */
    @ApiModelProperty(value = "推单失败,审批拒绝")
    public static final int PUSH_ORDER_FAIL= 20101;
 
    /**
     * 还款相关业务异常
     */
    @ApiModelProperty(value = "还款异常")
    public static final int REPAY_ERROR= 20301;
 
    /**
     * 确认借款相关业务异常
     */
    @ApiModelProperty(value = "确认借款异常")
    public static final int LOAN_ERROR= 20400;
 
}