weaver-hrm-salary/src/com/engine/salary/transmethod/ICategoryTransMethod.java

39 lines
849 B
Java
Raw Normal View History

2022-03-11 14:28:39 +08:00
package com.engine.salary.transmethod;
/**
* @Author weaver_cl
2022-07-13 11:45:16 +08:00
* @Description:
2022-03-11 14:28:39 +08:00
* @Date 2022/3/11
* @Version V1.0
**/
public class ICategoryTransMethod {
public static String getWelfareTypeName(String type) {
switch (type) {
case "1":
return "社保";
2022-03-11 17:46:26 +08:00
case "2":
2022-03-11 14:28:39 +08:00
return "公积金";
2022-03-11 17:46:26 +08:00
case "3":
2022-03-11 14:28:39 +08:00
return "企业年金及其它福利";
2022-03-11 17:46:26 +08:00
default:
return "";
}
}
public static String getPaymentcopeTypeName(String type) {
switch (type) {
case "1":
return "公司";
case "2":
return "个人";
case "1,2":
2022-04-01 15:06:14 +08:00
case "2,1":
2022-03-11 17:46:26 +08:00
return "公司,个人";
default:
return "";
2022-03-11 14:28:39 +08:00
}
}
}