Sign in

wms / hhwms · Files

Logo

GitLab

  • Back to group
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • hhwms
  • ..
  • service
  • TableService.java
  • 修改时间搜索无效,添加入库单没有明细不可以提交审核
    7da89c74
    mahuandong authored
    2019-11-26 14:40:25 +0800  
    Browse File ยป
TableService.java 353 Bytes
Edit Raw Blame History
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;
        }
    }
}