Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
manager
Project
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
reyun
manager
Commits
41e3309d
Commit
41e3309d
authored
Jun 05, 2019
by
kangxiaoshan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
操作日志
parent
168e9b9a
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
8 deletions
+9
-8
UserLogController.java
src/main/java/common/controller/UserLogController.java
+4
-4
ContractService.java
src/main/java/common/service/ContractService.java
+3
-2
ContractServiceImpl.java
src/main/java/common/service/impl/ContractServiceImpl.java
+2
-2
No files found.
src/main/java/common/controller/UserLogController.java
View file @
41e3309d
...
...
@@ -36,19 +36,19 @@ public class UserLogController
@RequestMapping
(
value
=
"change/del/info"
,
method
=
RequestMethod
.
GET
)
@ResponseBody
public
ResultModel
getChangeDelData
(
@PathVariable
String
platform
,
@CurrentAccount
User
loginAccount
,
public
ResultModel
getChangeDelData
(
@CurrentAccount
User
loginAccount
,
HttpServletRequest
request
,
String
contranctCode
,
String
startDate
,
String
endDate
)
{
return
ResultModel
.
OK
(
service
.
getChangeDelData
(
platform
,
loginAccount
,
contranctCode
,
startDate
,
endDate
));
return
ResultModel
.
OK
(
service
.
getChangeDelData
(
loginAccount
,
contranctCode
,
startDate
,
endDate
));
}
@RequestMapping
(
value
=
"change/del/detail"
,
method
=
RequestMethod
.
GET
)
@ResponseBody
public
ResultModel
getChangeDelDetail
(
@
PathVariable
String
platform
,
@
CurrentAccount
User
loginAccount
,
public
ResultModel
getChangeDelDetail
(
@CurrentAccount
User
loginAccount
,
String
pid
)
{
return
ResultModel
.
OK
(
service
.
getChangeDelDetailData
(
platform
,
loginAccount
,
pid
));
return
ResultModel
.
OK
(
service
.
getChangeDelDetailData
(
loginAccount
,
pid
));
}
}
src/main/java/common/service/ContractService.java
View file @
41e3309d
...
...
@@ -65,7 +65,7 @@ public interface ContractService {
Object
changesDel
(
String
platform
,
String
id
,
String
type
,
String
ip
,
User
loginAccount
);
List
<
ChangeDelInfo
>
getChangeDelData
(
String
platform
,
User
loginAccount
,
String
contranctCode
,
String
startDate
,
String
endDate
);
List
<
ChangeDelInfo
>
getChangeDelData
(
User
loginAccount
,
String
contranctCode
,
String
startDate
,
String
endDate
);
List
<
ChangeDelDetail
>
getChangeDelDetailData
(
String
platform
,
User
loginAccount
,
String
pid
);
List
<
ChangeDelDetail
>
getChangeDelDetailData
(
User
loginAccount
,
String
pid
);
}
\ No newline at end of file
src/main/java/common/service/impl/ContractServiceImpl.java
View file @
41e3309d
...
...
@@ -1380,7 +1380,7 @@ public class ContractServiceImpl implements ContractService {
}
@Override
public
List
<
ChangeDelInfo
>
getChangeDelData
(
String
platform
,
User
loginAccount
,
String
contranctCode
,
String
startDate
,
String
endDate
)
{
public
List
<
ChangeDelInfo
>
getChangeDelData
(
User
loginAccount
,
String
contranctCode
,
String
startDate
,
String
endDate
)
{
List
<
ChangeDelInfo
>
datas
=
changeDelInfoRepository
.
findOnStartDate
(
startDate
,
endDate
);
return
datas
;
...
...
@@ -1388,7 +1388,7 @@ public class ContractServiceImpl implements ContractService {
@Override
public
List
<
ChangeDelDetail
>
getChangeDelDetailData
(
String
platform
,
User
loginAccount
,
String
pid
)
{
public
List
<
ChangeDelDetail
>
getChangeDelDetailData
(
User
loginAccount
,
String
pid
)
{
List
<
ChangeDelDetail
>
datas
=
changeDelDetailRepository
.
findByPid
(
pid
);
return
datas
;
...
...
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