中航富士达人事需求

This commit is contained in:
Chengliang 2025-05-09 10:50:18 +08:00
parent 91ebd93f5a
commit 06fb749a7c
2 changed files with 3 additions and 3 deletions

View File

@ -107,7 +107,7 @@ public class ExamineRankingServiceImpl extends Service implements ExamineRanking
public List<String> workUnits() {
RecordSetDataSource rst = new weaver.conn.RecordSetDataSource();
List<String> unitList = new ArrayList<>();
rst.executeQueryWithDatasource("select VndName from V_OA_BPVnd","AErp8_XAFSD");
rst.executeQueryWithDatasource("select VndName from V_OA_BPVnd","psxt");
while (rst.next()) {
unitList.add(Util.null2String(rst.getString("VndName").trim()));
}

View File

@ -23,9 +23,9 @@ public class CustomSearchTemplate extends AbstractCustomSqlConditionJavaCode {
@Override
public String generateSqlCondition(Map<String, Object> param) throws Exception {
RecordSetDataSource rst = new weaver.conn.RecordSetDataSource();
RecordSetDataSource rst = new RecordSetDataSource();
List<String> unitList = new ArrayList<>();
rst.executeQueryWithDatasource("select VndName from V_OA_BPVnd","AErp8_XAFSD");
rst.executeQueryWithDatasource("select VndName from V_OA_BPVnd","psxt");
while (rst.next()) {
unitList.add(Util.null2String(rst.getString("VndName").trim()));
}