Compare commits
No commits in common. '9ed47b7c11779ce3c9a7d10b2007a62f8dbbea8e' and '2ba416b17c52ca3aa2627a07a4916da9723d7fae' have entirely different histories.
9ed47b7c11
...
2ba416b17c
@ -1,8 +0,0 @@
|
||||
plugins{
|
||||
id 'war'
|
||||
}
|
||||
description = ""
|
||||
|
||||
dependencies {
|
||||
// 子项目私有依赖添加
|
||||
}
|
@ -1,30 +0,0 @@
|
||||
package com.weaver.seconddev.webservice;
|
||||
|
||||
import com.alibaba.fastjson.JSON;
|
||||
import com.alibaba.fastjson.JSONArray;
|
||||
import com.alibaba.fastjson.JSONObject;
|
||||
import com.weaver.verupgrade.workflow.workflow.WorkflowAllComInfo;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
@Service("demoService")
|
||||
public class DemoService {
|
||||
private final static Logger log = LoggerFactory.getLogger(DemoService.class);
|
||||
|
||||
|
||||
@Autowired
|
||||
private WorkflowAllComInfo workflowAllComInfo;
|
||||
|
||||
public String demo(String detailTables){
|
||||
log.error("DemoService start");
|
||||
String workcodeId = "100003460000005676";
|
||||
|
||||
String detailTable = detailTables;
|
||||
log.error("detailTable" + detailTables);
|
||||
|
||||
log.error("DemoService end");
|
||||
return detailTable;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue