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

22 lines
526 B
Java
Raw Normal View History

2022-03-02 11:12:22 +08:00
package com.engine.salary.transmethod;
public class TaxRateTransMethod {
public static String getSystemTypeName(String type) {
switch (type) {
case "1":
return "系统表单";
case "0":
return "自定义表单";
default:
return "自定义表单";
}
}
public static String getCheckBoxPopedom(String type) {
if ("1".equals(type))
return "false";
else
return "true";
}
}