TransArriveExportService.java
478 字节
package com.tianbo.analysis.service;
import com.github.pagehelper.PageInfo;
import com.tianbo.analysis.model.TRANSTOARRIVEEXPORT;
public interface TransArriveExportService {
int addTransArriveExport(TRANSTOARRIVEEXPORT transtoarriveexport);
int ediTransArriveExport(TRANSTOARRIVEEXPORT transtoarriveexport);
int delTransArriveExport(String autoid);
PageInfo<TRANSTOARRIVEEXPORT> selectTrans(TRANSTOARRIVEEXPORT transtoarriveexport,int pageNum,int pageSize);
}