SingleChartMapperUtils.java 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180
  1. package com.lightinit.hsdatashow.common;
  2. import com.lightinit.hsdatashow.entity.BaseExample;
  3. import com.lightinit.hsdatashow.model.ResultState;
  4. import java.lang.reflect.Method;
  5. import java.util.ArrayList;
  6. import java.util.List;
  7. /**
  8. * @Author: sunxiang
  9. * @Date: 2018/9/3 10:52
  10. * @Description: 通过反射对单表的删,改,查进行操作的工具类
  11. **/
  12. public class SingleChartMapperUtils {
  13. public static List list(List clazz,String tableType,BaseExample.Page pager) {
  14. ArrayList<Class> mappers = new ArrayList();
  15. for (Object o : clazz) {
  16. mappers.add(o.getClass().getInterfaces()[0]);
  17. }
  18. for(int i=0;i< mappers.size();i++){
  19. Class name = mappers.get(i);
  20. if(name.getSimpleName().equalsIgnoreCase(tableType+"Mapper")){
  21. try{
  22. Class<?> aClass = Class.forName("com.lightinit.hsdatashow.entity."+tableType+ "Example");
  23. Object obj=aClass.newInstance();
  24. Method orderByClause = obj.getClass().getDeclaredMethod("setOrderByClause",String.class);
  25. orderByClause.invoke(obj,"data_year desc limit "+pager.getBeginIndex()+","+pager.getPageSize());
  26. Object o= clazz.get(i);
  27. Method selectByExample = o.getClass().getDeclaredMethod("selectByExample", aClass);
  28. return (List)selectByExample.invoke(o,obj);
  29. }catch (Exception e){
  30. e.printStackTrace();
  31. throw new RuntimeException("查询失败");
  32. }
  33. }
  34. }
  35. return null;
  36. }
  37. public static List list(List clazz,String tableType,BaseExample.Page pager,String orederClause) {
  38. ArrayList<Class> mappers = new ArrayList();
  39. for (Object o : clazz) {
  40. mappers.add(o.getClass().getInterfaces()[0]);
  41. }
  42. for(int i=0;i< mappers.size();i++){
  43. Class name = mappers.get(i);
  44. if(name.getSimpleName().equalsIgnoreCase(tableType+"Mapper")){
  45. try{
  46. Class<?> aClass = Class.forName("com.lightinit.hsdatashow.entity."+tableType+ "Example");
  47. Object obj=aClass.newInstance();
  48. Method orderByClause = obj.getClass().getDeclaredMethod("setOrderByClause",String.class);
  49. orderByClause.invoke(obj,orederClause+" desc limit "+pager.getBeginIndex()+","+pager.getPageSize());
  50. Object o= clazz.get(i);
  51. Method selectByExample = o.getClass().getDeclaredMethod("selectByExample", aClass);
  52. return (List)selectByExample.invoke(o,obj);
  53. }catch (Exception e){
  54. e.printStackTrace();
  55. throw new RuntimeException("查询失败");
  56. }
  57. }
  58. }
  59. return null;
  60. }
  61. public static <V> ResultState add(V v, boolean isEdit,List clazz) {
  62. ArrayList<Class> mappers = new ArrayList();
  63. for (Object o : clazz) {
  64. mappers.add(o.getClass().getInterfaces()[0]);
  65. }
  66. ResultState resultState = new ResultState();
  67. int i=0;
  68. try{
  69. List<Class> names = mappers;
  70. for(int j=0;j< names.size();j++){
  71. if(names.get(j).getSimpleName().equalsIgnoreCase(v.getClass().getSimpleName()+"Mapper")){
  72. Object o= clazz.get(j);
  73. if(isEdit){
  74. Method selectByExample = o.getClass().getDeclaredMethod("updateByPrimaryKeySelective", v.getClass());
  75. i=(Integer) selectByExample.invoke(o,v);
  76. }else{
  77. Method selectByExample = o.getClass().getDeclaredMethod("insert", v.getClass());
  78. i=(Integer) selectByExample.invoke(o,v);
  79. }
  80. break;
  81. }
  82. }
  83. }catch (Exception e){
  84. e.printStackTrace();
  85. }
  86. if(i<1){
  87. resultState.setStateCode(400);
  88. resultState.setMsg("操作失败");
  89. return resultState;
  90. }
  91. resultState.setMsg("操作成功");
  92. return resultState;
  93. }
  94. public static Object findById(List clazz,String tableType, Long id) {
  95. ArrayList<Class> mappers = new ArrayList();
  96. for (Object o : clazz) {
  97. mappers.add(o.getClass().getInterfaces()[0]);
  98. }
  99. for(int i=0;i< mappers.size();i++){
  100. Class name = mappers.get(i);
  101. if(name.getSimpleName().equalsIgnoreCase(tableType+"Mapper")){
  102. try {
  103. Object o= clazz.get(i);
  104. Method selectByPrimaryKey=o.getClass().getDeclaredMethod("selectByPrimaryKey",Long.class);
  105. return selectByPrimaryKey.invoke(o,id);
  106. } catch (Exception e) {
  107. e.printStackTrace();
  108. throw new RuntimeException("查询失败");
  109. }
  110. }
  111. }
  112. return null;
  113. }
  114. public static long queryCount(List clazz,String tableType) {
  115. ArrayList<Class> mappers = new ArrayList();
  116. for (Object o : clazz) {
  117. mappers.add(o.getClass().getInterfaces()[0]);
  118. }
  119. for(int i=0;i< mappers.size();i++){
  120. Class name = mappers.get(i);
  121. if(name.getSimpleName().equalsIgnoreCase(tableType+"Mapper")){
  122. try{
  123. Class<?> aClass = Class.forName("com.lightinit.hsdatashow.entity."+tableType+ "Example");
  124. Object obj=aClass.newInstance();
  125. Object o= clazz.get(i);
  126. Method selectByExample = o.getClass().getDeclaredMethod("countByExample", aClass);
  127. return (long)selectByExample.invoke(o,obj);
  128. }catch (Exception e){
  129. e.printStackTrace();
  130. throw new RuntimeException("查询失败");
  131. }
  132. }
  133. }
  134. return 0;
  135. }
  136. public static ResultState delete(List clazz,String tableType, Long id) {
  137. ArrayList<Class> mappers = new ArrayList();
  138. for (Object o : clazz) {
  139. mappers.add(o.getClass().getInterfaces()[0]);
  140. }
  141. ResultState resultState = new ResultState();
  142. int j=0;
  143. for(int i=0;i< mappers.size();i++){
  144. Class name = mappers.get(i);
  145. if(name.getSimpleName().equalsIgnoreCase(tableType+"Mapper")){
  146. try {
  147. Object o= clazz.get(i);
  148. Method deleteByPrimaryKey=o.getClass().getDeclaredMethod("deleteByPrimaryKey",Long.class);
  149. j=(Integer) deleteByPrimaryKey.invoke(o,id);
  150. } catch (Exception e) {
  151. e.printStackTrace();
  152. }
  153. break;
  154. }
  155. }
  156. if(j<1){
  157. resultState.setStateCode(400);
  158. resultState.setMsg("删除失败");
  159. return resultState;
  160. }
  161. resultState.setMsg("删除成功");
  162. return resultState;
  163. }
  164. }