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