Commit b483ca21 by jianan

来佣导出小问题

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