Commit 4330acb5 authored by shenxin's avatar shenxin

修改

parent e9d43f7f
...@@ -24,6 +24,7 @@ import com.mortals.xhx.modules.supplement.model.SupplementQuery; ...@@ -24,6 +24,7 @@ import com.mortals.xhx.modules.supplement.model.SupplementQuery;
import com.mortals.xhx.modules.supplement.service.SupplementService; import com.mortals.xhx.modules.supplement.service.SupplementService;
import lombok.extern.slf4j.Slf4j; import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Component; import org.springframework.stereotype.Component;
import javax.annotation.Resource; import javax.annotation.Resource;
...@@ -42,6 +43,9 @@ import java.util.stream.Collectors; ...@@ -42,6 +43,9 @@ import java.util.stream.Collectors;
@Component("supplementTaskImpl") @Component("supplementTaskImpl")
public class SupplementTaskImpl implements ITaskExcuteService { public class SupplementTaskImpl implements ITaskExcuteService {
@Value("${upload.area}")
String area;
@Autowired @Autowired
private SupplementService supplementService; private SupplementService supplementService;
...@@ -84,7 +88,7 @@ public class SupplementTaskImpl implements ITaskExcuteService { ...@@ -84,7 +88,7 @@ public class SupplementTaskImpl implements ITaskExcuteService {
informationQuery.setDeptCode(thImplement.getDeptCode()); informationQuery.setDeptCode(thImplement.getDeptCode());
informationQuery.setEventCode(thImplement.getMatterCode()); informationQuery.setEventCode(thImplement.getMatterCode());
informationQuery.setEventName(thImplement.getMatterName()); informationQuery.setEventName(thImplement.getMatterName());
informationQuery.setAreaCode("510121"); informationQuery.setAreaCode(area);
//是否转化成功:0默认 1成功 //是否转化成功:0默认 1成功
informationQuery.setIsSuccess("1"); informationQuery.setIsSuccess("1");
//是否推送(0 否 1是) //是否推送(0 否 1是)
......
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