OaWorkflowXmlApi.java 681 B

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