Commit 5e11320e authored by dahai's avatar dahai

push

parent 4be9e2ac
package com.yxproject.start.mapper;
import org.apache.ibatis.annotations.Mapper;
/**
* @auther zhangyusheng
* 2019/3/9 15:25
*/
@Mapper
public interface PoliceStationVailedMapper {
}
...@@ -128,6 +128,7 @@ public interface TaskListMapper { ...@@ -128,6 +128,7 @@ public interface TaskListMapper {
@Insert("insert into task (CARD_TYPE,COUNTY_CODE,SUBMIT_NAME,TASK_STATE_ID,OLD_CARD_TYPE) values(#{cardType},#{countyCode},#{submitName},#{taskStateId},#{oldCardType})") @Insert("insert into task (CARD_TYPE,COUNTY_CODE,SUBMIT_NAME,TASK_STATE_ID,OLD_CARD_TYPE) values(#{cardType},#{countyCode},#{submitName},#{taskStateId},#{oldCardType})")
@Options(useGeneratedKeys=true, keyProperty="taskId", keyColumn="TASK_ID") @Options(useGeneratedKeys=true, keyProperty="taskId", keyColumn="TASK_ID")
public boolean saveFastTask(TaskEntity taskEntity); public boolean saveFastTask(TaskEntity taskEntity);
/** /**
* 生成任务单 * 生成任务单
* @param taskEntity 任务单 * @param taskEntity 任务单
......
package com.yxproject.start.service;
/**
* @auther zhangyusheng
* 2019/3/9 15:26
*/
public interface PoliceStationVailedService {
}
package com.yxproject.start.service.impl;
import com.yxproject.start.mapper.PoliceStationVailedMapper;
import com.yxproject.start.service.PoliceStationVailedService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
/**
* @auther zhangyusheng
* 2019/3/9 15:26
*/
@Service
public class PoliceStationVailedServiceImpl implements PoliceStationVailedService {
@Autowired
private PoliceStationVailedMapper policeStationVailedMapper;
}
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