Blame view

src/main/java/com/huaheng/pc/config/table/service/TableService.java 353 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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;
        }
    }
}