parent
815c5492c7
commit
b5dba4b13f
4 changed files with 58 additions and 5 deletions
@ -0,0 +1,37 @@ |
|||||||
|
package com.daqing.financial.guarantee.util; |
||||||
|
|
||||||
|
import com.alibaba.excel.metadata.CellData; |
||||||
|
|
||||||
|
/** |
||||||
|
* @Author chen |
||||||
|
* @DATE 2021/1/4 9:38 |
||||||
|
* @Version 1.0 |
||||||
|
*/ |
||||||
|
public class TaskNodeUtil { |
||||||
|
public static String converter(String taskNode){ |
||||||
|
switch (taskNode){ |
||||||
|
case "1": |
||||||
|
return "业务申请"; |
||||||
|
case "2": |
||||||
|
return "担保部调查"; |
||||||
|
case "3": |
||||||
|
return "资产部调查"; |
||||||
|
case "4": |
||||||
|
return "信息部调查"; |
||||||
|
case "5": |
||||||
|
return "合规调查"; |
||||||
|
case "6": |
||||||
|
return "工作会"; |
||||||
|
case "7": |
||||||
|
return "贷审会"; |
||||||
|
case "8": |
||||||
|
return "担保函"; |
||||||
|
case "9": |
||||||
|
return "回款确认"; |
||||||
|
case "10": |
||||||
|
return "放款通知"; |
||||||
|
default: |
||||||
|
return ""; |
||||||
|
} |
||||||
|
} |
||||||
|
} |
Loading…
Reference in new issue