Commit 6dd677bf authored by dahai's avatar dahai

push

parent 65e73619
......@@ -360,7 +360,7 @@ public class TaskListApi {
String name = jsonObject.getString("name");
//添加重做返回证任务单
TaskEntity taskEntity = new TaskEntity();
taskEntity.setCardType((long) 1);
taskEntity.setCardType((long) 2);
taskEntity.setCountyCode("000000");
taskEntity.setTaskStateId((long) 0);
taskEntity.setSubmitName(name);
......
......@@ -1530,7 +1530,8 @@ public interface TaskListMapper {
* @param date 查询登记时间
* @return
*/
@Select("select * from task left join group_no on task.task_id = group_no.task_id where card_type = 2 and to_char(submit_date,'yyyyMMdd') = #{date} order by task.task_id")
@Select("select * from task left join group_no on task.task_id = group_no.task_id" +
" left join TASK_STATE_DIC on task.TASK_STATE_ID=TASK_STATE_DIC.TASK_STATE_ID where card_type = 2 and to_char(submit_date,'yyyyMMdd') = #{date} order by task.task_id")
public List<Map<String, Object>> selectRedoTask(@Param("date")String date);
/**
......
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