2022-03-16 18:26:49 +08:00
|
|
|
package com.engine.salary.cmd.siarchives;
|
2022-03-15 09:34:53 +08:00
|
|
|
|
|
|
|
|
import com.engine.common.biz.AbstractCommonCommand;
|
|
|
|
|
import com.engine.common.entity.BizLogContext;
|
|
|
|
|
import com.engine.core.interceptor.CommandContext;
|
2022-03-22 19:47:46 +08:00
|
|
|
import com.engine.salary.biz.SIArchivesBiz;
|
2022-03-15 09:34:53 +08:00
|
|
|
import weaver.hrm.User;
|
|
|
|
|
|
|
|
|
|
import java.util.Map;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @Author weaver_cl
|
|
|
|
|
* @Description: TODO
|
|
|
|
|
* @Date 2022/3/12
|
|
|
|
|
* @Version V1.0
|
|
|
|
|
**/
|
|
|
|
|
public class SIArchivesTipsCmd extends AbstractCommonCommand<Map<String, Object>> {
|
|
|
|
|
|
|
|
|
|
public SIArchivesTipsCmd(Map<String, Object> params, User user) {
|
|
|
|
|
this.user = user;
|
|
|
|
|
this.params = params;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public BizLogContext getLogContext() {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public Map<String, Object> execute(CommandContext commandContext) {
|
2022-03-22 19:47:46 +08:00
|
|
|
SIArchivesBiz siArchivesBiz = new SIArchivesBiz();
|
|
|
|
|
siArchivesBiz.tips();
|
2022-03-15 09:34:53 +08:00
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
}
|