package jnpf.base.fallback;
|
|
import jnpf.base.PrintApi;
|
import jnpf.base.entity.PrintDevEntity;
|
import jnpf.base.model.print.PaginationPrint;
|
import jnpf.base.model.print.PrintOption;
|
import org.springframework.stereotype.Component;
|
import org.springframework.web.bind.annotation.RequestParam;
|
|
import java.util.Collections;
|
import java.util.List;
|
|
@Component
|
public class PrintApiFallback implements PrintApi {
|
@Override
|
public List<PrintOption> getList(List<String> ids) {
|
return null;
|
}
|
|
@Override
|
public List<PrintDevEntity> getListByIds(List<String> ids) {
|
return Collections.EMPTY_LIST;
|
}
|
|
@Override
|
public List<PrintDevEntity> getWorkSelector(PaginationPrint page) {
|
return Collections.EMPTY_LIST;
|
}
|
|
@Override
|
public List<PrintDevEntity> getWorkSelector(List<String> id) {
|
return Collections.EMPTY_LIST;
|
}
|
|
@Override
|
public List<PrintDevEntity> getListByCreUser(@RequestParam("creUser") String creUser) {
|
return Collections.EMPTY_LIST;
|
}
|
}
|