路维光电人力资源项目

This commit is contained in:
Chengliang 2025-04-01 13:50:31 +08:00
parent 46f1c9fde1
commit 41956296ce
3 changed files with 37 additions and 1 deletions

View File

@ -1,6 +1,6 @@
<component name="ArtifactManager">
<artifact type="jar" name="weaver-develop:jar">
<output-path>$PROJECT_DIR$/out/artifacts/weaver_develop_jar</output-path>
<output-path>$PROJECT_DIR$/../../../../weaver/ecology/WEB-INF/lib</output-path>
<root id="archive" name="weaver-develop.jar">
<element id="module-output" name="weaver-develop" />
</root>

View File

@ -0,0 +1,18 @@
package weaver.interfaces.newwaymask.action;
import weaver.interfaces.workflow.action.Action;
import weaver.soa.workflow.request.RequestInfo;
/**
* @Author liang.cheng
* @Date 2025/4/1 11:48
* @Description: 入职流程编制信息更新
* @Version 1.0
*/
public class StaffByEntryWorkflowAction implements Action {
@Override
public String execute(RequestInfo requestInfo) {
return null;
}
}

View File

@ -0,0 +1,18 @@
package weaver.interfaces.newwaymask.cron;
import weaver.interfaces.schedule.BaseCronJob;
/**
* @Author liang.cheng
* @Date 2025/4/1 11:22
* @Description: 定时更新人员最新部门和岗位数据
* @Version 1.0
*/
public class ResourceCardUpdateCron extends BaseCronJob {
@Override
public void execute() {
}
}