记得上下班打卡 | git大法好,push需谨慎

Commit e387bc58 authored by 胡佳晨's avatar 胡佳晨

修改 退款相关vo

parent 22d41171
......@@ -112,39 +112,43 @@ public class KylinOrderRefundsVo implements Serializable {
private List<KylinOrderRefundPicVo> orderRefundPicVos;
public void setStatusName(Integer status){
this.status=status;
switch (status){
try {
this.status = status;
switch (status) {
case 0:
this.statusName="请求退款";
this.statusName = "请求退款";
break;
case 1:
this.statusName="一审通过";
this.statusName = "一审通过";
break;
case 2:
this.statusName="取消退款";
this.statusName = "取消退款";
break;
case 3:
this.statusName="正在退款";
this.statusName = "正在退款";
break;
case 4:
this.statusName="完成退款";
this.statusName = "完成退款";
break;
case 5:
this.statusName="一审驳回退款";
this.statusName = "一审驳回退款";
break;
case 6:
this.statusName="退款失败";
this.statusName = "退款失败";
break;
case 7:
this.statusName="二审通过等待退款";
this.statusName = "二审通过等待退款";
break;
case 8:
this.statusName="二审驳回退款";
this.statusName = "二审驳回退款";
break;
default:
this.statusName="其他";
this.statusName = "其他";
break;
}
}catch (Exception e){
this.statusName = "其他";
}
}
}
......@@ -9,9 +9,9 @@ eureka:
spring:
cloud:
config:
# uri: http://39.106.122.201:7002/support-config
profile: ${liquidnet.cloudConfig.profile}
name: ${spring.application.name} #默认为spring.application.name
discovery:
enabled: true
service-id: liquidnet-support-config
uri: http://39.106.122.201:7002/support-config
# profile: ${liquidnet.cloudConfig.profile}
# name: ${spring.application.name} #默认为spring.application.name
# discovery:
# enabled: true
# service-id: liquidnet-support-config
......@@ -2,7 +2,7 @@ spring:
application:
name: liquidnet-service-kylin
profiles:
active: dev
active: test
server:
tomcat:
max-threads: 2000
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment