| 12345678910111213141516171819202122232425262728 |
- package com.java110.common.api;
- import com.fasterxml.jackson.databind.ObjectMapper;
- import com.fasterxml.jackson.databind.node.ObjectNode;
- import org.activiti.editor.constants.ModelDataJsonConstants;
- import org.activiti.engine.RepositoryService;
- import org.activiti.engine.repository.Model;
- import org.slf4j.Logger;
- import org.slf4j.LoggerFactory;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.stereotype.Controller;
- import org.springframework.web.bind.annotation.RequestMapping;
- import org.springframework.web.bind.annotation.ResponseBody;
- import javax.servlet.http.HttpServletResponse;
- import java.io.IOException;
- /**
- * @author luobaimang
- * @date 2019/11/28
- */
- @Controller
- public class ModelController {
- }
|