E-BOM 확인/수정쪽 속도개선

This commit is contained in:
Johngreen
2025-10-28 13:33:21 +09:00
parent 2feeb8c341
commit a297e660d4
4 changed files with 249 additions and 155 deletions

View File

@@ -1538,6 +1538,28 @@ public class PartMngService extends BaseService {
return CommonUtils.toUpperCaseMapKey(resultList);
}
/**
* PART 목록 총 개수 조회 (페이징용)
*/
public int getToConnectPartMngListCount(HttpServletRequest request, Map paramMap){
int totalCount = 0;
SqlSession sqlSession = null;
try{
sqlSession = SqlMapConfig.getInstance().getSqlSession();
setPartMngCommonCD(paramMap);
totalCount = (Integer)sqlSession.selectOne("partMng.getToConnectPartMngListCount", paramMap);
}catch(Exception e){
e.printStackTrace();
}finally{
sqlSession.close();
}
return totalCount;
}
/**