Commit 28b7f30b authored by liboyang's avatar liboyang

Merge remote-tracking branch 'origin/dev' into dev

parents 9cd3a377 b5dd5406
......@@ -17,7 +17,7 @@ public interface ReceiptService {
public boolean createDetailedList(String UPLOAD_NO,String ACCEPT_NO,String NAME,String CARD_ID,String GAJG_DM,long RECEIPT_ID,String SEX,String signGovt);
public int selectSpecialCard(String GROUP_NO);
// public int selectSpecialCard(String GROUP_NO);
public List<Map<String,Object>> selectByGroupNo(String groupNo);
......@@ -25,7 +25,7 @@ public interface ReceiptService {
public List<Map<String,Object>>selectReceiptListOfSpecialCard (String name);
public Map<String,Object> selectReceiptList(String id);
// public Map<String,Object> selectReceiptList(String id);
public List<Map<String,Object>> selectDetailList(String receiptId);
......@@ -39,7 +39,7 @@ public interface ReceiptService {
public int selectCount(String GROUP_NO);
public boolean updateFinishCount(String GROUP_NO,int count);
// public boolean updateFinishCount(String GROUP_NO,int count);
public List<Map<String,Object>> queryPoliceName(String policeCode);
......
......@@ -41,11 +41,11 @@ public class ReceiptServiceImpl implements ReceiptService {
return true;
}
@Override
public int selectSpecialCard(String GROUP_NO) {
int count = receiptMapper.selectSpecialCard(GROUP_NO);
return count;
}
// @Override
// public int selectSpecialCard(String GROUP_NO) {
// int count = receiptMapper.selectSpecialCard(GROUP_NO);
// return count;
// }
......@@ -67,11 +67,11 @@ public class ReceiptServiceImpl implements ReceiptService {
return resultList;
}
@Override
public Map<String, Object> selectReceiptList(String id) {
Map<String, Object> resultMap = receiptMapper.selectReceiptList(id);
return resultMap;
}
// @Override
// public Map<String, Object> selectReceiptList(String id) {
// Map<String, Object> resultMap = receiptMapper.selectReceiptList(id);
// return resultMap;
// }
@Override
public List<Map<String, Object>> selectDetailList(String receiptId) {
......@@ -96,11 +96,11 @@ public class ReceiptServiceImpl implements ReceiptService {
return count;
}
@Override
public boolean updateFinishCount(String GROUP_NO, int count) {
receiptMapper.updateFinishCount(GROUP_NO,count);
return true;
}
// @Override
// public boolean updateFinishCount(String GROUP_NO, int count) {
// receiptMapper.updateFinishCount(GROUP_NO,count);
// return true;
// }
@Override
public List<Map<String, Object>> selectCountById(String id,String beginDate,String expireDate) {
......
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