Commit da07a86e authored by dahai's avatar dahai

push

parent a097571e
......@@ -19,6 +19,9 @@ public interface PreproPersonService {
public List<PreproPersonEntity> selectPreproPerson(String uploadNo, String IDCard, String oldFile, String newFile, String SSXQDM, String cardType, String state, String uploadDate,String currPage,String pageSize);
public List<PreproPersonEntity> selectAllPreproPerson(String uploadNo, String IDCard, String oldFile, String newFile, String SSXQDM, String cardType, String state, String uploadDate);
public List<PreproPersonEntity> selectPreproPersonCount(String uploadNo, String IDCard, String oldFile, String newFile, String SSXQDM, String cardType, String state, String uploadDate);
public boolean updatePreproPerson_NewFileName(List<PreproPersonEntity> preproPersonEntities);
......
......@@ -25,7 +25,7 @@ public class PreproPersonServiceImpl implements PreproPersonService {
}
/**
* 查询制证数据详细信息
* 分页查询制证数据详细信息
* @param uploadNo
* @param IDCard
* @param oldFile
......@@ -44,6 +44,23 @@ public class PreproPersonServiceImpl implements PreproPersonService {
return preproPersonEntities;
}
/**
* 查询全部制证详细信息
* @param uploadNo
* @param IDCard
* @param oldFile
* @param newFile
* @param SSXQDM
* @param cardType
* @param state
* @param uploadDate
* @return
*/
@Override
public List<PreproPersonEntity> selectAllPreproPerson(String uploadNo, String IDCard, String oldFile, String newFile, String SSXQDM, String cardType, String state, String uploadDate) {
return null;
}
/**
* 查询制证数据总数
* @param uploadNo
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment