Commit b483ca21 by jianan

来佣导出小问题

parent a5ad37d0
......@@ -495,19 +495,15 @@ public class LifeCommissionServiceImpl implements LifeCommissionService {
}
private String transferCommissionCheckStatus(String commissionCheckStatus) {
String result = "";
switch (commissionCheckStatus) {
case "1" :
result = "待来佣";
break;
case "2" :
result = "已比对";
break;
case "3" :
result = "已退保";
break;
if ("1".equals(commissionCheckStatus)) {
return "待来佣";
} else if ("2".equals(commissionCheckStatus)) {
return "已比对";
} else if ("3".equals(commissionCheckStatus)) {
return "已退保";
} else {
return "";
}
return result;
}
}
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