Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
operation-control-platform
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
王锦盛
operation-control-platform
Commits
60bed0ab
Commit
60bed0ab
authored
Mar 12, 2022
by
diaoruifeng
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
服务列表功能增加统推查询
parent
2ba572c3
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
0 deletions
+13
-0
src/main/java/com/pms/ocp/model/dto/ApiBaseDto.java
src/main/java/com/pms/ocp/model/dto/ApiBaseDto.java
+10
-0
src/main/java/com/pms/ocp/service/impl/ApiBasicManagementServiceImpl.java
...m/pms/ocp/service/impl/ApiBasicManagementServiceImpl.java
+3
-0
No files found.
src/main/java/com/pms/ocp/model/dto/ApiBaseDto.java
View file @
60bed0ab
...
@@ -26,6 +26,8 @@ public class ApiBaseDto implements Serializable {
...
@@ -26,6 +26,8 @@ public class ApiBaseDto implements Serializable {
@ApiModelProperty
(
"服务分类公司(建设单位)"
)
@ApiModelProperty
(
"服务分类公司(建设单位)"
)
private
String
apiGroupCompanyCode
;
private
String
apiGroupCompanyCode
;
@ApiModelProperty
(
"推广类型0:统建;1:自建"
)
private
String
apiPromotion
;
@ApiModelProperty
(
"注册时段-开始"
)
@ApiModelProperty
(
"注册时段-开始"
)
@DateTimeFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
)
@DateTimeFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
)
...
@@ -52,6 +54,14 @@ public class ApiBaseDto implements Serializable {
...
@@ -52,6 +54,14 @@ public class ApiBaseDto implements Serializable {
@ApiModelProperty
(
"每页条数"
)
@ApiModelProperty
(
"每页条数"
)
private
Integer
pageSize
;
private
Integer
pageSize
;
public
String
getApiPromotion
()
{
return
apiPromotion
;
}
public
void
setApiPromotion
(
String
apiPromotion
)
{
this
.
apiPromotion
=
apiPromotion
;
}
public
String
getApiCode
()
{
public
String
getApiCode
()
{
return
apiCode
;
return
apiCode
;
}
}
...
...
src/main/java/com/pms/ocp/service/impl/ApiBasicManagementServiceImpl.java
View file @
60bed0ab
...
@@ -205,6 +205,9 @@ public class ApiBasicManagementServiceImpl extends ServiceImpl<ApiBasicManagemen
...
@@ -205,6 +205,9 @@ public class ApiBasicManagementServiceImpl extends ServiceImpl<ApiBasicManagemen
if
(!
StringUtils
.
isEmpty
(
apiBaseReq
.
getApiGroupCompanyCode
()))
{
if
(!
StringUtils
.
isEmpty
(
apiBaseReq
.
getApiGroupCompanyCode
()))
{
qw
.
eq
(
"api_unit"
,
apiBaseReq
.
getApiGroupCompanyCode
());
qw
.
eq
(
"api_unit"
,
apiBaseReq
.
getApiGroupCompanyCode
());
}
}
if
(!
StringUtils
.
isEmpty
(
apiBaseReq
.
getApiPromotion
()))
{
qw
.
eq
(
"api_promotion"
,
apiBaseReq
.
getApiPromotion
());
}
if
(!
StringUtils
.
isEmpty
(
apiBaseReq
.
getStartCTime
()))
{
if
(!
StringUtils
.
isEmpty
(
apiBaseReq
.
getStartCTime
()))
{
qw
.
ge
(
"api_ctime"
,
apiBaseReq
.
getApiGroupCompanyCode
());
qw
.
ge
(
"api_ctime"
,
apiBaseReq
.
getApiGroupCompanyCode
());
}
}
...
...
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