Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gic-platform-enterprise
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
base_platform_enterprise
gic-platform-enterprise
Commits
3c1f996e
Commit
3c1f996e
authored
Jun 18, 2020
by
guojuxing
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/developer' into developer
parents
00eb9465
47e2a79c
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
1 deletions
+14
-1
DownloadReportQO.java
...src/main/java/com/gic/enterprise/qo/DownloadReportQO.java
+10
-1
DownloadReportServiceImpl.java
...ic/enterprise/service/impl/DownloadReportServiceImpl.java
+1
-0
TabDownloadReportMapper.xml
...ice/src/main/resources/mapper/TabDownloadReportMapper.xml
+3
-0
No files found.
gic-platform-enterprise-api/src/main/java/com/gic/enterprise/qo/DownloadReportQO.java
View file @
3c1f996e
...
...
@@ -12,7 +12,6 @@ import java.util.Date;
*/
public
class
DownloadReportQO
extends
PageQO
{
private
static
final
long
serialVersionUID
=
-
5251611329415430980L
;
public
interface
SelectValidView
{
}
...
...
@@ -35,6 +34,8 @@ public class DownloadReportQO extends PageQO {
// private String searchName;
private
Integer
auditResult
;
private
Date
auditExpireTime
;
private
Date
ltAuditExpireTime
;
private
Boolean
hasDownloadUrl
;
private
String
projectCode
;
...
...
@@ -118,4 +119,12 @@ public class DownloadReportQO extends PageQO {
public
void
setProjectCode
(
String
projectCode
)
{
this
.
projectCode
=
projectCode
;
}
public
Date
getLtAuditExpireTime
()
{
return
ltAuditExpireTime
;
}
public
void
setLtAuditExpireTime
(
Date
ltAuditExpireTime
)
{
this
.
ltAuditExpireTime
=
ltAuditExpireTime
;
}
}
gic-platform-enterprise-service/src/main/java/com/gic/enterprise/service/impl/DownloadReportServiceImpl.java
View file @
3c1f996e
...
...
@@ -63,6 +63,7 @@ public class DownloadReportServiceImpl implements DownloadReportService {
switch
(
downloadReportQO
.
getDownloadReportStatus
())
{
case
0
:
downloadReportQO
.
setAuditResult
(
DataSecurityAuditEnum
.
WAIT
.
getCode
());
downloadReportQO
.
setLtAuditExpireTime
(
new
Date
());
downloadReportQO
.
setHasDownloadUrl
(
null
);
break
;
case
2
:
...
...
gic-platform-enterprise-service/src/main/resources/mapper/TabDownloadReportMapper.xml
View file @
3c1f996e
...
...
@@ -342,6 +342,9 @@
<if
test=
"auditExpireTime != null "
>
and audit_expire_time
<
#{auditExpireTime}
</if>
<if
test=
"ltAuditExpireTime != null "
>
and audit_expire_time
>
#{ltAuditExpireTime}
</if>
<if
test=
"hasDownloadUrl != null "
>
<if
test=
"hasDownloadUrl"
>
and download_url is not null
...
...
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