Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
T
traffic-front
Project
Project
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wangxiaoming
traffic-front
Commits
4a041590
Commit
4a041590
authored
Nov 11, 2018
by
neo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[DEV] add project id where retrun approval info
parent
eccb98ba
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
0 deletions
+10
-0
PeriodApproveMapper.java
...in/java/pwc/taxtech/atms/vat/dao/PeriodApproveMapper.java
+1
-0
ApprovalTaskInfo.java
.../main/java/pwc/taxtech/atms/vat/dpo/ApprovalTaskInfo.java
+9
-0
No files found.
atms-dao/src/main/java/pwc/taxtech/atms/vat/dao/PeriodApproveMapper.java
View file @
4a041590
...
...
@@ -111,6 +111,7 @@ public interface PeriodApproveMapper extends MyVatMapper {
@Select
(
"<script>"
+
"SELECT "
+
" p.NAME AS projectName, "
+
" pa.PROJECT_ID AS projectId, "
+
" pa.PERIOD AS period, "
+
" pa.INSTANCE_ID AS instanceId, "
+
" u1.USER_NAME AS createBy, "
+
...
...
atms-dao/src/main/java/pwc/taxtech/atms/vat/dpo/ApprovalTaskInfo.java
View file @
4a041590
...
...
@@ -4,6 +4,7 @@ import java.sql.Date;
public
class
ApprovalTaskInfo
{
private
String
projectName
;
private
String
projectId
;
private
Integer
period
;
private
String
instanceId
;
private
String
createBy
;
...
...
@@ -93,4 +94,12 @@ public class ApprovalTaskInfo {
public
void
setReportPaths
(
String
reportPaths
)
{
this
.
reportPaths
=
reportPaths
;
}
public
String
getProjectId
()
{
return
projectId
;
}
public
void
setProjectId
(
String
projectId
)
{
this
.
projectId
=
projectId
;
}
}
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