Sign in

廖磊 / control_calwaybill · Files

GitLab

  • Go to dashboard
  • Project
  • Activity
  • Files
  • Commits
  • Builds 0
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • control_calwaybill
  • ..
  • service
  • LineConfigService.java
  • first commit
      5b999d2f
    廖磊 authored
    2017-10-19 17:23:11 +0800  
    Browse Code »
LineConfigService.java 265 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
package com.bsth.service;

import com.bsth.entity.LineConfig;

import java.util.List;
import java.util.Map;

/**
 * Created by panzhao on 2017/7/27.
 */
public interface LineConfigService {

    Map<String,LineConfig> findAll();

	List<LineConfig> findAllList();
}