22 lines
526 B
Java
22 lines
526 B
Java
|
|
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";
|
||
|
|
}
|
||
|
|
}
|