Commit 952ceb30 by 王军业

2131311512152

1 parent ce25f982
......@@ -19,6 +19,6 @@ public interface ContractMapper {
List<String> queryList();
List<ContractVo> selectByCondition(SelectVo selectVo);
int count(SelectVo selectVo);
Boolean isDelete(String contract_unid);
boolean isDelete(String contract_unid);
List<ExportModel> exportContracts(SelectVo selectVo);
}
......@@ -11,7 +11,7 @@ public interface ContractService {
public Object updateOne(ContractVo vontractVo);
public Object deleteOne(String s);
public Object queryList();
boolean isDelete(String s);
Boolean isDelete(String s);
public Object selectByCondition(SelectVo selectVo);
public void exportExcel(SelectVo selectVo,HttpServletResponse response);
}
......@@ -156,7 +156,7 @@ public class ContractServiceImpl implements ContractService {
}
}
public boolean isDelete(String s) {
public Boolean isDelete(String s) {
return contractMapper.isDelete(s);
}
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!