From 13aefea8804d18e72deb81d0e09daa1e1fb9021c Mon Sep 17 00:00:00 2001 From: luozukai Date: Mon, 22 Jul 2019 09:46:05 +0800 Subject: [PATCH] =?UTF-8?q?[=E5=AE=A1=E6=89=B9=E6=B5=81][=E4=BF=AE?= =?UTF-8?q?=E6=94=B9][=E6=B7=BB=E5=8A=A0=E5=88=A4=E6=96=AD=E9=81=BF?= =?UTF-8?q?=E5=85=8D=E7=A9=BA=E6=8C=87=E9=92=88=E9=94=99=E8=AF=AF]?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/com/iformall/service/impl/WxFlowServiceImpl.java | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/mallinkService/src/main/java/com/iformall/service/impl/WxFlowServiceImpl.java b/mallinkService/src/main/java/com/iformall/service/impl/WxFlowServiceImpl.java index e968d89c6..a19fa51a2 100644 --- a/mallinkService/src/main/java/com/iformall/service/impl/WxFlowServiceImpl.java +++ b/mallinkService/src/main/java/com/iformall/service/impl/WxFlowServiceImpl.java @@ -1439,4 +1439,9 @@ public class WxFlowServiceImpl implements WxFlowService { public List getModelBybusiness(WxFlowModel wxFlowModel) { return wxFlowModelMapper.getModelBybusiness(wxFlowModel); } + + public static void main(String[] args) { + new Thread(() -> System.out.println(1 + "hello world")).start(); + + } }