提交 8d666ff0 编写于 作者: Y YZJ

去掉多余支付状态

上级 11b88eee
......@@ -24,7 +24,7 @@ public class AuthOrderInfoContinuePayBO implements Serializable {
/***
* 支付类型
*/
@ApiModelProperty(value = "支付方式(1微信支付,2支付宝支付,3积分支付)", required = true)
@ApiModelProperty(value = "支付方式:1微信支付,2支付宝支付", required = true)
private Integer payType;
}
......@@ -18,9 +18,9 @@ public class AuthOrderInfoListBO implements Serializable {
private static final long serialVersionUID = 1L;
/**
* 订单状态1待支付,2成功支付,3支付失败,4已关闭,5已退款, 6订单解绑
* 订单状态1待支付,2成功支付,3支付失败,4已关闭
*/
@ApiModelProperty(value = "订单状态(1待支付,2成功支付,3支付失败,4已关闭,5已退款, 6订单解绑)")
@ApiModelProperty(value = "订单状态(1待支付,2成功支付,3支付失败,4已关闭)")
private Integer orderStatus;
/**
......
......@@ -23,10 +23,10 @@ public class AuthOrderPayBO implements Serializable {
@ApiModelProperty(value = "课程编号", required = true)
private Long courseId;
@ApiModelProperty(value = "支付方式(1微信支付,2支付宝支付,3积分支付)", required = true)
@ApiModelProperty(value = "支付方式:1微信支付,2支付宝支付", required = true)
private Integer payType;
@ApiModelProperty(value = "购买渠道:1web,2pp,3微信,4手工绑定", required = true)
@ApiModelProperty(value = "购买渠道:1web", required = true)
private Integer channelType;
@ApiModelProperty(value = "用户备注", required = false)
......
......@@ -39,14 +39,14 @@ public class AuthOrderInfoDTO implements Serializable {
@ApiModelProperty(value = "实际支付金额", required = true)
private BigDecimal pricePaid;
/**
* 支付方式:1微信支付,2支付宝支付,3余额支付
* 支付方式:1微信支付,2支付宝支付
*/
@ApiModelProperty(value = "支付方式(1:微信支付,2:支付宝支付,3:积分支付)", required = true)
@ApiModelProperty(value = "支付方式(1:微信支付,2:支付宝支付)", required = true)
private Integer payType;
/**
* 订单状态:0待支付,1成功支付,2支付失败,3已关闭,4已退款
*/
@ApiModelProperty(value = "订单状态(1:待支付,2:支付成功,3:支付失败,4:已关闭,5:已退款, 6:订单解绑)", required = true)
@ApiModelProperty(value = "订单状态(1:待支付,2:支付成功,3:支付失败,4:已关闭)", required = true)
private Integer orderStatus;
/**
* 支付时间
......
......@@ -68,11 +68,11 @@ public class AuthOrderInfoListDTO implements Serializable {
/**
* 支付方式:1微信支付,2支付宝支付,3积分支付
*/
@ApiModelProperty(value = "支付方式:1微信支付,2支付宝支付,3积分支付,4手工录单")
@ApiModelProperty(value = "支付方式:1微信支付,2支付宝支付")
private Integer payType;
/**
* 订单状态:1待支付,2成功支付,3支付失败,4已关闭,5已退款, 6订单解绑
*/
@ApiModelProperty(value = "订单状态:1待支付,2成功支付,3支付失败,4已关闭,5已退款, 6订单解绑")
@ApiModelProperty(value = "订单状态:1待支付,2成功支付,3支付失败,4已关闭")
private Integer orderStatus;
}
\ No newline at end of file
......@@ -12,7 +12,7 @@ import lombok.Getter;
@Getter
@AllArgsConstructor
public enum ChannelTypeEnum {
PC(1, "PC端"), APP(2, "APP端"), WEIXIN(3, "微信端"), MANUAL(4, "手工绑定");
PC(1, "PC端");
private Integer code;
......
......@@ -13,7 +13,7 @@ import lombok.Getter;
@AllArgsConstructor
public enum OrderStatusEnum {
WAIT(1, "待支付"), SUCCESS(2, "支付成功"), FAIL(3, "支付失败"), CLOSE(4, "已关闭"), REFUND(5, "已退款"),UNBIND(6,"已解绑");
WAIT(1, "待支付"), SUCCESS(2, "支付成功"), FAIL(3, "支付失败"), CLOSE(4, "已关闭");
private Integer code;
......
......@@ -13,7 +13,7 @@ import lombok.Getter;
@AllArgsConstructor
public enum PayTypeEnum {
WEIXIN(1, "微信支付"), ALIPAY(2, "支付宝支付"), INTEGRAL(3, "积分支付"), MANUAL(4, "手工录单");
WEIXIN(1, "微信支付"), ALIPAY(2, "支付宝支付");
private Integer code;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册