Commit 67a70aa4 authored by dahai's avatar dahai

push

parent 552a0b61
...@@ -63,7 +63,7 @@ public interface ReceiptService { ...@@ -63,7 +63,7 @@ public interface ReceiptService {
public boolean updateDetail(@Param("acceptNo")String accept,@Param("note")String note); public boolean updateDetail(@Param("acceptNo")String accept,@Param("note")String note);
public List<Map<String,Object>> selectReceiptList(List<String> stringList,String date,long typeCode); public List<Map<String,Object>> selectReceiptList(List<Integer> stringList,String date,long typeCode);
public Map<String,Object>selectDetailedData2(String id); public Map<String,Object>selectDetailedData2(String id);
......
...@@ -155,11 +155,11 @@ public class ReceiptServiceImpl implements ReceiptService { ...@@ -155,11 +155,11 @@ public class ReceiptServiceImpl implements ReceiptService {
} }
@Override @Override
public List<Map<String, Object>> selectReceiptList(List<String> stringList, String date, long typeCode) { public List<Map<String, Object>> selectReceiptList(List<Integer> stringList, String date, long typeCode) {
String str = null; String str = null;
for (int i =0;i<stringList.size();i++){ for (int i =0;i<stringList.size();i++){
if (i!=stringList.size()-1){ if (i!=stringList.size()-1){
str+=stringList.get(i); str+=stringList.get(i)+"";
}else { }else {
str+=stringList.get(i)+","; str+=stringList.get(i)+",";
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment