Compare commits
2 Commits
2ba416b17c
...
9ed47b7c11
Author | SHA1 | Date |
---|---|---|
|
9ed47b7c11 | 2 months ago |
|
f78e707e63 | 2 months ago |
@ -0,0 +1,8 @@
|
|||||||
|
plugins{
|
||||||
|
id 'war'
|
||||||
|
}
|
||||||
|
description = ""
|
||||||
|
|
||||||
|
dependencies {
|
||||||
|
// 子项目私有依赖添加
|
||||||
|
}
|
@ -0,0 +1,30 @@
|
|||||||
|
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