Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
midjourney-proxy
Overview
Overview
Details
Activity
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
徐少华
midjourney-proxy
Commits
17582665
Commit
17582665
authored
Dec 13, 2018
by
gaopeng
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
打卡书
parent
7c9fba98
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
92 additions
and
0 deletions
+92
-0
pom.xml
pcloud-common/pom.xml
+4
-0
BasePageRequestVO.java
...main/java/com/pcloud/common/entity/BasePageRequestVO.java
+53
-0
BaseRequestVO.java
...src/main/java/com/pcloud/common/entity/BaseRequestVO.java
+30
-0
pom.xml
pom.xml
+5
-0
No files found.
pcloud-common/pom.xml
View file @
17582665
...
@@ -178,6 +178,10 @@
...
@@ -178,6 +178,10 @@
<artifactId>
httpcore
</artifactId>
<artifactId>
httpcore
</artifactId>
</dependency>
</dependency>
<dependency>
<dependency>
<groupId>
org.apache.httpcomponents
</groupId>
<artifactId>
httpmime
</artifactId>
</dependency>
<dependency>
<groupId>
redis.clients
</groupId>
<groupId>
redis.clients
</groupId>
<artifactId>
jedis
</artifactId>
<artifactId>
jedis
</artifactId>
</dependency>
</dependency>
...
...
pcloud-common/src/main/java/com/pcloud/common/entity/BasePageRequestVO.java
0 → 100644
View file @
17582665
package
com
.
pcloud
.
common
.
entity
;
import
io.swagger.annotations.ApiModel
;
import
io.swagger.annotations.ApiModelProperty
;
import
java.io.Serializable
;
/**
* @author peidawei
* @version 1.0.0
* @package com.pcloud.common.entity
* @className BasePageRequestVO
* @description 分页请求VO基类
* @date 2018年11月29日 下午 14:46
*/
@ApiModel
(
"分页请求VO基类"
)
public
class
BasePageRequestVO
implements
Serializable
{
private
static
final
long
serialVersionUID
=
-
4034188768789093041L
;
@ApiModelProperty
(
hidden
=
true
)
private
Long
userId
;
@ApiModelProperty
(
"每页多少条"
)
private
Integer
numPerPage
;
@ApiModelProperty
(
"当前页"
)
private
Integer
currentPage
;
public
Long
getUserId
()
{
return
userId
;
}
public
void
setUserId
(
Long
userId
)
{
this
.
userId
=
userId
;
}
public
Integer
getNumPerPage
()
{
return
numPerPage
;
}
public
void
setNumPerPage
(
Integer
numPerPage
)
{
this
.
numPerPage
=
numPerPage
;
}
public
Integer
getCurrentPage
()
{
return
currentPage
;
}
public
void
setCurrentPage
(
Integer
currentPage
)
{
this
.
currentPage
=
currentPage
;
}
}
pcloud-common/src/main/java/com/pcloud/common/entity/BaseRequestVO.java
0 → 100644
View file @
17582665
package
com
.
pcloud
.
common
.
entity
;
import
io.swagger.annotations.ApiModel
;
import
io.swagger.annotations.ApiModelProperty
;
import
java.io.Serializable
;
/**
* @author peidawei
* @version 1.0.0
* @package com.pcloud.common.entity
* @className BaseRequestVO
* @description 请求VO基类
* @date 2018年11月29日 下午 14:44
*/
@ApiModel
(
"请求VO基类"
)
public
class
BaseRequestVO
implements
Serializable
{
private
static
final
long
serialVersionUID
=
-
1078697162056973900L
;
@ApiModelProperty
(
hidden
=
true
)
private
Long
userId
;
public
Long
getUserId
()
{
return
userId
;
}
public
void
setUserId
(
Long
userId
)
{
this
.
userId
=
userId
;
}
}
pom.xml
View file @
17582665
...
@@ -231,6 +231,11 @@
...
@@ -231,6 +231,11 @@
<version>
4.4.6
</version>
<version>
4.4.6
</version>
</dependency>
</dependency>
<dependency>
<dependency>
<groupId>
org.apache.httpcomponents
</groupId>
<artifactId>
httpmime
</artifactId>
<version>
4.5.3
</version>
</dependency>
<dependency>
<groupId>
redis.clients
</groupId>
<groupId>
redis.clients
</groupId>
<artifactId>
jedis
</artifactId>
<artifactId>
jedis
</artifactId>
<version>
2.9.0
</version>
<version>
2.9.0
</version>
...
...
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