mirror of
https://gitee.com/dromara/RuoYi-Cloud-Plus.git
synced 2025-09-07 04:50:38 +00:00
Merge branch 'master' of https://gitee.com/y_project/RuoYi-Cloud
Conflicts: README.md ruoyi-common/ruoyi-common-core/src/main/java/com/ruoyi/common/core/constant/Constants.java ruoyi-modules/ruoyi-job/src/main/java/com/ruoyi/job/controller/SysJobController.java ruoyi-modules/ruoyi-job/src/main/java/com/ruoyi/job/util/ScheduleUtils.java
This commit is contained in:
@@ -19,12 +19,17 @@ public interface Constants {
|
||||
/**
|
||||
* RMI 远程方法调用
|
||||
*/
|
||||
String LOOKUP_RMI = "rmi://";
|
||||
String LOOKUP_RMI = "rmi:";
|
||||
|
||||
/**
|
||||
* LDAP 远程方法调用
|
||||
*/
|
||||
String LOOKUP_LDAP = "ldap://";
|
||||
String LOOKUP_LDAP = "ldap:";
|
||||
|
||||
/**
|
||||
* LDAPS 远程方法调用
|
||||
*/
|
||||
String LOOKUP_LDAPS = "ldaps:";
|
||||
|
||||
/**
|
||||
* http请求
|
||||
|
@@ -20,7 +20,8 @@ public class PageUtils extends PageHelper {
|
||||
Integer pageSize = pageDomain.getPageSize();
|
||||
if (StringUtils.isNotNull(pageNum) && StringUtils.isNotNull(pageSize)) {
|
||||
String orderBy = SqlUtil.escapeOrderBySql(pageDomain.getOrderBy());
|
||||
PageHelper.startPage(pageNum, pageSize, orderBy);
|
||||
Boolean reasonable = pageDomain.getReasonable();
|
||||
PageHelper.startPage(pageNum, pageSize, orderBy).setReasonable(reasonable);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user