32 lines
780 B
Java
32 lines
780 B
Java
package com.engine.salary.cmd.datacollection;
|
|
|
|
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.HashMap;
|
|
import java.util.Map;
|
|
|
|
public class AddUpDeductionExportCmd extends AbstractCommonCommand<Map<String, Object>> {
|
|
|
|
public AddUpDeductionExportCmd(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) {
|
|
Map<String, Object> apidatas = new HashMap<String, Object>(16);
|
|
|
|
|
|
|
|
return apidatas;
|
|
}
|
|
}
|