34 lines
1.1 KiB
Java
34 lines
1.1 KiB
Java
package com.engine.xmg.service.impl;
|
|
|
|
import com.cloudstore.eccom.result.WeaResultMsg;
|
|
import com.engine.core.impl.Service;
|
|
import com.engine.organization.component.OrganizationWeaTable;
|
|
import com.engine.xmg.entity.demand.vo.RecruitDemandTable;
|
|
import com.engine.xmg.service.RecruitDemandService;
|
|
|
|
import java.util.HashMap;
|
|
import java.util.Map;
|
|
|
|
/**
|
|
* @author:dxfeng
|
|
* @createTime: 2024/08/29
|
|
* @version: 1.0
|
|
*/
|
|
public class RecruitDemandServiceImpl extends Service implements RecruitDemandService {
|
|
|
|
@Override
|
|
public Map<String, Object> getRecruitDemandReport(Map<String, Object> param) {
|
|
Map<String, Object> resultMap = new HashMap<>();
|
|
|
|
// 刷新引用状态
|
|
OrganizationWeaTable<RecruitDemandTable> table = new OrganizationWeaTable<>(user, RecruitDemandTable.class);
|
|
String sqlWhere = " where 1=1 ";
|
|
table.setSqlwhere(sqlWhere);
|
|
WeaResultMsg result = new WeaResultMsg(false);
|
|
result.putAll(table.makeDataResult());
|
|
result.success();
|
|
resultMap.putAll(result.getResultMap());
|
|
return resultMap;
|
|
}
|
|
}
|