Browse Source

导入导出开发

anderx 2 years ago
parent
commit
1ccf166423

+ 4 - 4
ruoyi-common/src/main/java/com/ruoyi/common/core/controller/BaseController.java

@@ -23,7 +23,7 @@ import com.ruoyi.common.utils.sql.SqlUtil;
 
 /**
  * web层通用数据处理
- * 
+ *
  * @author ruoyi
  */
 public class BaseController
@@ -113,7 +113,7 @@ public class BaseController
     {
         return AjaxResult.success(message);
     }
-    
+
     /**
      * 返回成功消息
      */
@@ -140,7 +140,7 @@ public class BaseController
 
     /**
      * 响应返回结果
-     * 
+     *
      * @param rows 影响行数
      * @return 操作结果
      */
@@ -151,7 +151,7 @@ public class BaseController
 
     /**
      * 响应返回结果
-     * 
+     *
      * @param result 结果
      * @return 操作结果
      */

+ 11 - 2
ruoyi-common/src/main/java/com/ruoyi/common/core/page/TableDataInfo.java

@@ -5,7 +5,7 @@ import java.util.List;
 
 /**
  * 表格分页数据对象
- * 
+ *
  * @author ruoyi
  */
 public class TableDataInfo implements Serializable
@@ -14,6 +14,7 @@ public class TableDataInfo implements Serializable
 
     /** 总记录数 */
     private long total;
+    private int next;
 
     /** 列表数据 */
     private List<?> rows;
@@ -33,7 +34,7 @@ public class TableDataInfo implements Serializable
 
     /**
      * 分页
-     * 
+     *
      * @param list 列表数据
      * @param total 总记录数
      */
@@ -82,4 +83,12 @@ public class TableDataInfo implements Serializable
     {
         this.msg = msg;
     }
+
+    public int getNext() {
+        return next;
+    }
+
+    public void setNext(int next) {
+        this.next = next;
+    }
 }

+ 6 - 3
ruoyi-common/src/main/java/com/ruoyi/common/utils/PageUtils.java

@@ -1,5 +1,6 @@
 package com.ruoyi.common.utils;
 
+import com.github.pagehelper.Page;
 import com.github.pagehelper.PageHelper;
 import com.ruoyi.common.core.page.PageDomain;
 import com.ruoyi.common.core.page.TableSupport;
@@ -7,7 +8,7 @@ import com.ruoyi.common.utils.sql.SqlUtil;
 
 /**
  * 分页工具类
- * 
+ *
  * @author ruoyi
  */
 public class PageUtils extends PageHelper
@@ -21,10 +22,12 @@ public class PageUtils extends PageHelper
         Integer pageNum = pageDomain.getPageNum();
         Integer pageSize = pageDomain.getPageSize();
         String orderBy = SqlUtil.escapeOrderBySql(pageDomain.getOrderBy());
-        Boolean reasonable = pageDomain.getReasonable();
-        PageHelper.startPage(pageNum, pageSize, orderBy).setReasonable(reasonable);
+//        Boolean reasonable = pageDomain.getReasonable();
+        startPage(pageNum, pageSize, orderBy).setReasonable(false);
+
     }
 
+
     /**
      * 清理分页的线程变量
      */

+ 14 - 24
ruoyi-system/src/main/java/com/ruoyi/weChat/service/WeChatService.java

@@ -16,6 +16,8 @@ import org.springframework.stereotype.Component;
 import org.springframework.stereotype.Service;
 
 import java.util.Date;
+import java.util.HashMap;
+import java.util.Map;
 import java.util.concurrent.TimeUnit;
 
 
@@ -34,27 +36,15 @@ public class WeChatService {
 
 	@Autowired
 	private RedisCache redisCache;
-	@Autowired
-	private SysUserMapper sysUserMapper;
+
 
 
 
 	/**
-	 * 公出待审核通知
-	 */
-	private static final String PUBLIC_RELEASE_EXAMINE ="j7WH3EwQnxGxwuV2HwmJhryxySPE8vOiV5cVOpp-42I";
-	/**
-	 * 公出审核结果通知
-	 */
-	private static final String PUBLIC_RELEASE_EXAMINE_RESULT="pWia-KJPFwDM8ReDu_BOa9FJn31VFc81bp3yxfBmIRI";
-	/**
-	 * 公出待审核通知
-	 */
-	private static final String EXPENSE_RELEASE_EXAMINE ="0e2Te3WUa0fDPQnyE8TLmN_K06WLsB4fqm5qpo6npNo";
-	/**
-	 * 公出审核结果通知
+	 * 审批流程消息提醒
 	 */
-	private static final String EXPENSE_RELEASE_EXAMINE_RESULT="rRPWzRcGY8BGwlk0xyjwR1RKdv3iRFXaU3bcK1300gw";
+	private static final String PUBLIC_RELEASE_EXAMINE ="2L9AJWl2yNfgd83Fw_f_E6HiaEvPf109iw_xFtI8PXI";
+
 
 
 	/**
@@ -118,14 +108,14 @@ public class WeChatService {
 
 
 
-//	/**
-//	 * 推送微信订阅信息,跳转为公出信息
-//	 * @param openid 发送对象微信openid
-//	 * @param type 状态 0驳回 1发起 2同意
-//	 * @param date 日期
-//	 * @param aname 发送者名称
-//	 * @param remarks 发送信息,不能大于十五个字
-//	 */
+	/**
+	 * 推送微信订阅信息,跳转为公出信息
+	 * @param openid 发送对象微信openid
+	 * @param type 状态 0驳回 1发起 2同意
+	 * @param date 日期
+	 * @param aname 发送者名称
+	 * @param remarks 发送信息,不能大于十五个字
+	 */
 //	public Integer addNotice(String openid ,Integer type,Integer id, Date date, String aname,String remarks) {
 //		Map<String, Object> map=new HashMap<String, Object>();
 //		String accessToken=getAccessToken();