Compare commits

...

2 Commits

@ -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…
Cancel
Save