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

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

修改 退款相关vo

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