路维光电人力资源项目
This commit is contained in:
parent
46f1c9fde1
commit
41956296ce
|
|
@ -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>
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
@ -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() {
|
||||
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue