TransmissionService.java
406 字节
package com.tianbo.analysis.service;
import com.tianbo.analysis.model.ORIGINMANIFESTMASTER;
import com.tianbo.analysis.model.PREPAREMASTER;
import java.util.List;
/**
* Created by XYH on 2019/7/9.
*/
public interface TransmissionService {
List<ORIGINMANIFESTMASTER> selectOrig(String start,String end)throws Exception;
List<PREPAREMASTER> selectPre(String start,String end)throws Exception;
}