You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
324 B
Java
18 lines
324 B
Java
3 years ago
|
package com.engine.organization.util;
|
||
|
|
||
|
/**
|
||
|
* @Author weaver_cl
|
||
|
* @Description: TODO
|
||
|
* @Date 2022/5/27
|
||
|
* @Version V1.0
|
||
|
**/
|
||
|
public class ConfigTrans {
|
||
|
|
||
|
public static String getCheckBoxPopedom(String status) {
|
||
|
if ("0".equals(status))
|
||
|
return "true";
|
||
|
else
|
||
|
return "false";
|
||
|
}
|
||
|
}
|