Commit 757cae48 authored by suichenguang's avatar suichenguang

添加余证

parent c25c20ea
...@@ -70,6 +70,17 @@ public class FailedCardApi { ...@@ -70,6 +70,17 @@ public class FailedCardApi {
return true; return true;
} }
/**
* 查询所有废证类型
* @return
*/
@RequestMapping("selectRemainingCardDic")
public List<String> selectRemainingCardDic(){
List<String> resultList= failedCardService.selectFailedCardDic();
return resultList;
}
/** /**
* 生成余证(每个余证生成一个任务单) * 生成余证(每个余证生成一个任务单)
......
...@@ -54,7 +54,6 @@ public interface FailedCardMapper { ...@@ -54,7 +54,6 @@ public interface FailedCardMapper {
/*余证*/ /*余证*/
@Update("update group_no \n" + @Update("update group_no \n" +
"set group_no.SPECIAL_CARD_COUNT=group_no.SPECIAL_CARD_COUNT+1 \n" + "set group_no.SPECIAL_CARD_COUNT=group_no.SPECIAL_CARD_COUNT+1 \n" +
...@@ -80,8 +79,4 @@ public interface FailedCardMapper { ...@@ -80,8 +79,4 @@ public interface FailedCardMapper {
public Map<String,Object> selectTaskListDate(String acceptNo); public Map<String,Object> selectTaskListDate(String acceptNo);
} }
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