From aac7d3b620a23246007c7b483107ca25081cbd60 Mon Sep 17 00:00:00 2001 From: xioayue Date: Thu, 30 Jun 2022 14:02:25 +0800 Subject: [PATCH] =?UTF-8?q?=E5=9F=BA=E7=A1=80=E6=8E=A7=E5=88=B6=E5=99=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/cn/chjyj/szwh/controller/BaseController.java | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 src/main/java/cn/chjyj/szwh/controller/BaseController.java diff --git a/src/main/java/cn/chjyj/szwh/controller/BaseController.java b/src/main/java/cn/chjyj/szwh/controller/BaseController.java new file mode 100644 index 0000000..e62a15d --- /dev/null +++ b/src/main/java/cn/chjyj/szwh/controller/BaseController.java @@ -0,0 +1,11 @@ +package cn.chjyj.szwh.controller; + +import com.alibaba.fastjson.JSONObject; + +/** + * 基础控制器 + */ +public abstract class BaseController { + // jsonobject 全局 + protected JSONObject jsonObject=null; +}