123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180 |
- package com.lightinit.hsdatashow.common;
- import com.lightinit.hsdatashow.entity.BaseExample;
- import com.lightinit.hsdatashow.model.ResultState;
- import java.lang.reflect.Method;
- import java.util.ArrayList;
- import java.util.List;
- public class SingleChartMapperUtils {
- public static List list(List clazz,String tableType,BaseExample.Page pager) {
- ArrayList<Class> mappers = new ArrayList();
- for (Object o : clazz) {
- mappers.add(o.getClass().getInterfaces()[0]);
- }
- for(int i=0;i< mappers.size();i++){
- Class name = mappers.get(i);
- if(name.getSimpleName().equalsIgnoreCase(tableType+"Mapper")){
- try{
- Class<?> aClass = Class.forName("com.lightinit.hsdatashow.entity."+tableType+ "Example");
- Object obj=aClass.newInstance();
- Method orderByClause = obj.getClass().getDeclaredMethod("setOrderByClause",String.class);
- orderByClause.invoke(obj,"data_year desc limit "+pager.getBeginIndex()+","+pager.getPageSize());
- Object o= clazz.get(i);
- Method selectByExample = o.getClass().getDeclaredMethod("selectByExample", aClass);
- return (List)selectByExample.invoke(o,obj);
- }catch (Exception e){
- e.printStackTrace();
- throw new RuntimeException("查询失败");
- }
- }
- }
- return null;
- }
- public static List list(List clazz,String tableType,BaseExample.Page pager,String orederClause) {
- ArrayList<Class> mappers = new ArrayList();
- for (Object o : clazz) {
- mappers.add(o.getClass().getInterfaces()[0]);
- }
- for(int i=0;i< mappers.size();i++){
- Class name = mappers.get(i);
- if(name.getSimpleName().equalsIgnoreCase(tableType+"Mapper")){
- try{
- Class<?> aClass = Class.forName("com.lightinit.hsdatashow.entity."+tableType+ "Example");
- Object obj=aClass.newInstance();
- Method orderByClause = obj.getClass().getDeclaredMethod("setOrderByClause",String.class);
- orderByClause.invoke(obj,orederClause+" desc limit "+pager.getBeginIndex()+","+pager.getPageSize());
- Object o= clazz.get(i);
- Method selectByExample = o.getClass().getDeclaredMethod("selectByExample", aClass);
- return (List)selectByExample.invoke(o,obj);
- }catch (Exception e){
- e.printStackTrace();
- throw new RuntimeException("查询失败");
- }
- }
- }
- return null;
- }
- public static <V> ResultState add(V v, boolean isEdit,List clazz) {
- ArrayList<Class> mappers = new ArrayList();
- for (Object o : clazz) {
- mappers.add(o.getClass().getInterfaces()[0]);
- }
- ResultState resultState = new ResultState();
- int i=0;
- try{
- List<Class> names = mappers;
- for(int j=0;j< names.size();j++){
- if(names.get(j).getSimpleName().equalsIgnoreCase(v.getClass().getSimpleName()+"Mapper")){
- Object o= clazz.get(j);
- if(isEdit){
- Method selectByExample = o.getClass().getDeclaredMethod("updateByPrimaryKeySelective", v.getClass());
- i=(Integer) selectByExample.invoke(o,v);
- }else{
- Method selectByExample = o.getClass().getDeclaredMethod("insert", v.getClass());
- i=(Integer) selectByExample.invoke(o,v);
- }
- break;
- }
- }
- }catch (Exception e){
- e.printStackTrace();
- }
- if(i<1){
- resultState.setStateCode(400);
- resultState.setMsg("操作失败");
- return resultState;
- }
- resultState.setMsg("操作成功");
- return resultState;
- }
- public static Object findById(List clazz,String tableType, Long id) {
- ArrayList<Class> mappers = new ArrayList();
- for (Object o : clazz) {
- mappers.add(o.getClass().getInterfaces()[0]);
- }
- for(int i=0;i< mappers.size();i++){
- Class name = mappers.get(i);
- if(name.getSimpleName().equalsIgnoreCase(tableType+"Mapper")){
- try {
- Object o= clazz.get(i);
- Method selectByPrimaryKey=o.getClass().getDeclaredMethod("selectByPrimaryKey",Long.class);
- return selectByPrimaryKey.invoke(o,id);
- } catch (Exception e) {
- e.printStackTrace();
- throw new RuntimeException("查询失败");
- }
- }
- }
- return null;
- }
- public static long queryCount(List clazz,String tableType) {
- ArrayList<Class> mappers = new ArrayList();
- for (Object o : clazz) {
- mappers.add(o.getClass().getInterfaces()[0]);
- }
- for(int i=0;i< mappers.size();i++){
- Class name = mappers.get(i);
- if(name.getSimpleName().equalsIgnoreCase(tableType+"Mapper")){
- try{
- Class<?> aClass = Class.forName("com.lightinit.hsdatashow.entity."+tableType+ "Example");
- Object obj=aClass.newInstance();
- Object o= clazz.get(i);
- Method selectByExample = o.getClass().getDeclaredMethod("countByExample", aClass);
- return (long)selectByExample.invoke(o,obj);
- }catch (Exception e){
- e.printStackTrace();
- throw new RuntimeException("查询失败");
- }
- }
- }
- return 0;
- }
- public static ResultState delete(List clazz,String tableType, Long id) {
- ArrayList<Class> mappers = new ArrayList();
- for (Object o : clazz) {
- mappers.add(o.getClass().getInterfaces()[0]);
- }
- ResultState resultState = new ResultState();
- int j=0;
- for(int i=0;i< mappers.size();i++){
- Class name = mappers.get(i);
- if(name.getSimpleName().equalsIgnoreCase(tableType+"Mapper")){
- try {
- Object o= clazz.get(i);
- Method deleteByPrimaryKey=o.getClass().getDeclaredMethod("deleteByPrimaryKey",Long.class);
- j=(Integer) deleteByPrimaryKey.invoke(o,id);
- } catch (Exception e) {
- e.printStackTrace();
- }
- break;
- }
- }
- if(j<1){
- resultState.setStateCode(400);
- resultState.setMsg("删除失败");
- return resultState;
- }
- resultState.setMsg("删除成功");
- return resultState;
- }
- }
|