33 lines
741 B
Java
33 lines
741 B
Java
package com.engine.salary.cmd.sischeme;
|
|
|
|
import com.engine.common.biz.AbstractCommonCommand;
|
|
import com.engine.common.entity.BizLogContext;
|
|
import com.engine.core.interceptor.CommandContext;
|
|
import weaver.hrm.User;
|
|
|
|
import java.util.Map;
|
|
|
|
/**
|
|
* @Author weaver_cl
|
|
* @Description: TODO
|
|
* @Date 2022/3/10
|
|
* @Version V1.0
|
|
**/
|
|
public class SISchemeListCmd extends AbstractCommonCommand<Map<String, Object>> {
|
|
|
|
public SISchemeListCmd(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) {
|
|
return null;
|
|
}
|
|
}
|