java110
2021-08-18 206bd996d405dde11d5c11e4f6069059308c0b1b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.java110.oa.api;
 
import com.java110.po.oaWorkflowXml.OaWorkflowXmlPo;
import com.java110.utils.util.Assert;
import com.java110.utils.util.BeanConvertUtil;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
 
@RestController
@RequestMapping(value = "/oaWorkflowXml")
public class OaWorkflowXmlApi {
 
}