TableService.java
353 Bytes
package com.huaheng.pc.config.table.service;
import org.springframework.stereotype.Service;
/**
 * Created by Enzo Cotter on 2019/11/25.
 */
@Service("table")
public class TableService {
    public boolean getVisible(String value){
        if ("t".equals(value)){
            return true;
        } else {
            return false;
        }
    }
}