Skip to content
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation
This project
Loading...
Sign in
platform
/
finance_serv
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit 952ceb30
authored
Aug 14, 2018
by
王军业
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
2131311512152
1 parent
ce25f982
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
code/finance_serv/src/main/java/com/vion/financial/mapper/ContractMapper.java
code/finance_serv/src/main/java/com/vion/financial/service/ContractService.java
code/finance_serv/src/main/java/com/vion/financial/service/imp/ContractServiceImpl.java
code/finance_serv/src/main/java/com/vion/financial/mapper/ContractMapper.java
View file @
952ceb3
...
...
@@ -19,6 +19,6 @@ public interface ContractMapper {
List
<
String
>
queryList
();
List
<
ContractVo
>
selectByCondition
(
SelectVo
selectVo
);
int
count
(
SelectVo
selectVo
);
B
oolean
isDelete
(
String
contract_unid
);
b
oolean
isDelete
(
String
contract_unid
);
List
<
ExportModel
>
exportContracts
(
SelectVo
selectVo
);
}
code/finance_serv/src/main/java/com/vion/financial/service/ContractService.java
View file @
952ceb3
...
...
@@ -11,7 +11,7 @@ public interface ContractService {
public
Object
updateOne
(
ContractVo
vontractVo
);
public
Object
deleteOne
(
String
s
);
public
Object
queryList
();
b
oolean
isDelete
(
String
s
);
B
oolean
isDelete
(
String
s
);
public
Object
selectByCondition
(
SelectVo
selectVo
);
public
void
exportExcel
(
SelectVo
selectVo
,
HttpServletResponse
response
);
}
code/finance_serv/src/main/java/com/vion/financial/service/imp/ContractServiceImpl.java
View file @
952ceb3
...
...
@@ -156,7 +156,7 @@ public class ContractServiceImpl implements ContractService {
}
}
public
b
oolean
isDelete
(
String
s
)
{
public
B
oolean
isDelete
(
String
s
)
{
return
contractMapper
.
isDelete
(
s
);
}
...
...
Write
Preview
Markdown
is supported
Attach a file
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 post a comment