Line2SystemService.java
318 Bytes
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();
}