Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jz-dmp-service
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
姚本章
jz-dmp-service
Commits
248fa0bf
Commit
248fa0bf
authored
Dec 24, 2020
by
mcb
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'dmp_dev' of
http://gitlab.ioubuy.cn/yaobenzhang/jz-dmp-service
into dmp_dev
parents
7cd9c5eb
400cbb7d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
43 additions
and
3 deletions
+43
-3
pom.xml
pom.xml
+12
-3
BasePageBean.java
src/main/java/com/jz/common/bean/BasePageBean.java
+31
-0
No files found.
pom.xml
View file @
248fa0bf
...
...
@@ -15,9 +15,19 @@
</parent>
<properties>
<java.version>
1.8
</java.version>
<start-class>
cn.jz.TagApplication
</start-class>
<shiro.version>
1.2.3
</shiro.version>
<mybatis-pagehelper.version>
4.2.0
</mybatis-pagehelper.version>
<start-class>
com.jz.Application
</start-class>
<project.build.sourceEncoding>
UTF-8
</project.build.sourceEncoding>
</properties>
</properties>
<repositories>
<repository>
<id>
cloudera
</id>
<url>
https://repository.cloudera.com/artifactory/cloudera-repos/
</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>
nl.bitwalker
</groupId>
...
...
@@ -252,7 +262,6 @@
<artifactId>
httpclient
</artifactId>
<version>
4.5.3
</version>
<!--$NO-MVN-MAN-VER$-->
</dependency>
</dependencies>
<build>
<finalName>
jz-dmp-service
</finalName>
...
...
src/main/java/com/jz/common/bean/BasePageBean.java
0 → 100644
View file @
248fa0bf
package
com
.
jz
.
common
.
bean
;
/**分页信息封装
* @author ybz
*
*/
public
class
BasePageBean
{
private
int
pageNum
=
1
;
private
int
pageSize
=
10
;
public
int
getPageNum
()
{
return
pageNum
;
}
public
void
setPageNum
(
int
pageNum
)
{
this
.
pageNum
=
pageNum
;
}
public
int
getPageSize
()
{
return
pageSize
;
}
public
void
setPageSize
(
int
pageSize
)
{
this
.
pageSize
=
pageSize
;
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment