Sign in

潘钊 / control_service_data_Interface · Files

GitLab

  • Go to dashboard
  • Project
  • Activity
  • Files
  • Commits
  • Builds 0
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • control_service_data_Interface
  • ..
  • service
  • Line2SystemService.java
  • update...
      eefecb07
    潘钊 authored
    2017-03-20 00:50:12 +0800  
    Browse Code »
Line2SystemService.java 318 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.bsth.service;

import com.bsth.entity.Line2System;

/**
 * Created by panzhao on 2017/3/14.
 */
public interface Line2SystemService {

    Line2System update(Line2System line2Sys);

    Iterable<Line2System> findAll();

    /**
     * 从线路表加载增量的线路
     */
    void loadByLineInfo();
}