16 lines
470 B
Java
16 lines
470 B
Java
|
|
package com.engine.salary.service.impl;
|
||
|
|
|
||
|
|
import com.engine.core.impl.Service;
|
||
|
|
import com.engine.salary.cmd.datacollection.AttendQuoteListCmd;
|
||
|
|
import com.engine.salary.service.AttendQuoteService;
|
||
|
|
|
||
|
|
import java.util.Map;
|
||
|
|
|
||
|
|
public class AttendQuoteServiceImpl extends Service implements AttendQuoteService {
|
||
|
|
|
||
|
|
@Override
|
||
|
|
public Map<String, Object> list(Map<String, Object> params) {
|
||
|
|
return commandExecutor.execute(new AttendQuoteListCmd(params, user));
|
||
|
|
}
|
||
|
|
}
|