75 lines
2.2 KiB
Java
75 lines
2.2 KiB
Java
package com.jsh.erp.service.functions;
|
|
|
|
import com.jsh.erp.service.ICommonQuery;
|
|
import com.jsh.erp.service.app.AppResource;
|
|
import com.jsh.erp.service.functions.FunctionsService;
|
|
import com.jsh.erp.utils.Constants;
|
|
import com.jsh.erp.utils.QueryUtils;
|
|
import com.jsh.erp.utils.StringUtil;
|
|
import org.springframework.stereotype.Service;
|
|
|
|
import javax.annotation.Resource;
|
|
import javax.servlet.http.HttpServletRequest;
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
|
|
@Service(value = "functions_component")
|
|
@FunctionsResource
|
|
public class FunctionsComponent implements ICommonQuery {
|
|
|
|
@Resource
|
|
private FunctionsService functionsService;
|
|
|
|
@Override
|
|
public Object selectOne(String condition) {
|
|
return null;
|
|
}
|
|
|
|
@Override
|
|
public List<?> select(Map<String, String> map) {
|
|
return getFunctionsList(map);
|
|
}
|
|
|
|
private List<?> getFunctionsList(Map<String, String> map) {
|
|
String search = map.get(Constants.SEARCH);
|
|
String name = StringUtil.getInfo(search, "name");
|
|
String type = StringUtil.getInfo(search, "type");
|
|
String order = QueryUtils.order(map);
|
|
return functionsService.select(name, type, QueryUtils.offset(map), QueryUtils.rows(map));
|
|
}
|
|
|
|
@Override
|
|
public Long counts(Map<String, String> map) {
|
|
String search = map.get(Constants.SEARCH);
|
|
String name = StringUtil.getInfo(search, "name");
|
|
String type = StringUtil.getInfo(search, "type");
|
|
return functionsService.countFunctions(name, type);
|
|
}
|
|
|
|
@Override
|
|
public int insert(String beanJson, HttpServletRequest request) {
|
|
return functionsService.insertFunctions(beanJson, request);
|
|
}
|
|
|
|
@Override
|
|
public int update(String beanJson, Long id) {
|
|
return functionsService.updateFunctions(beanJson, id);
|
|
}
|
|
|
|
@Override
|
|
public int delete(Long id) {
|
|
return functionsService.deleteFunctions(id);
|
|
}
|
|
|
|
@Override
|
|
public int batchDelete(String ids) {
|
|
return functionsService.batchDeleteFunctions(ids);
|
|
}
|
|
|
|
@Override
|
|
public int checkIsNameExist(Long id, String name) {
|
|
return functionsService.checkIsNameExist(id, name);
|
|
}
|
|
|
|
}
|