package com.uas.kanban.controller; import com.alibaba.fastjson.JSONObject; import com.uas.kanban.annotation.NotEmpty; import com.uas.kanban.base.BaseController; import com.uas.kanban.exception.OperationException; import com.uas.kanban.model.Template; import com.uas.kanban.model.TemplateParameter; import com.uas.kanban.service.TemplateService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.ResponseBody; import javax.servlet.http.HttpServletRequest; import java.util.List; /** * 用户 * * @author sunyj * @since 2017年9月1日 下午4:42:10 */ @Controller @RequestMapping("/template") public class TemplateController extends BaseController