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

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

修改 退款相关vo

parent 22d41171
...@@ -112,38 +112,42 @@ public class KylinOrderRefundsVo implements Serializable { ...@@ -112,38 +112,42 @@ 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;
case 0: switch (status) {
this.statusName="请求退款"; case 0:
break; this.statusName = "请求退款";
case 1: break;
this.statusName="一审通过"; case 1:
break; this.statusName = "一审通过";
case 2: break;
this.statusName="取消退款"; case 2:
break; this.statusName = "取消退款";
case 3: break;
this.statusName="正在退款"; case 3:
break; this.statusName = "正在退款";
case 4: break;
this.statusName="完成退款"; case 4:
break; this.statusName = "完成退款";
case 5: break;
this.statusName="一审驳回退款"; case 5:
break; this.statusName = "一审驳回退款";
case 6: break;
this.statusName="退款失败"; case 6:
break; this.statusName = "退款失败";
case 7: break;
this.statusName="二审通过等待退款"; case 7:
break; this.statusName = "二审通过等待退款";
case 8: break;
this.statusName="二审驳回退款"; case 8:
break; this.statusName = "二审驳回退款";
default: break;
this.statusName="其他"; default:
break; this.statusName = "其他";
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,10 +2,10 @@ spring: ...@@ -2,10 +2,10 @@ 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
min-spare-threads: 200 min-spare-threads: 200
max-connections: 20000 max-connections: 20000
connection-timeout: 5000 connection-timeout: 5000
\ No newline at end of file
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