22 lines
454 B
Java
22 lines
454 B
Java
|
|
package com.engine.salary.transmethod;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @Author weaver_cl
|
||
|
|
* @Description: TODO
|
||
|
|
* @Date 2022/3/11
|
||
|
|
* @Version V1.0
|
||
|
|
**/
|
||
|
|
public class ICategoryTransMethod {
|
||
|
|
|
||
|
|
public static String getWelfareTypeName(String type) {
|
||
|
|
switch (type) {
|
||
|
|
case "1":
|
||
|
|
return "社保";
|
||
|
|
case "0":
|
||
|
|
return "公积金";
|
||
|
|
default:
|
||
|
|
return "企业年金及其它福利";
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|