From 5e603d5619bbc0dbf37300e0d31d6351d0ba3608 Mon Sep 17 00:00:00 2001 From: qiaowei Date: Mon, 15 Apr 2019 10:12:54 +0800 Subject: [PATCH] =?utf8?q?=E5=95=86=E6=88=B7=E6=8E=A5=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- .../dlpay/shop/controller/shop_controller.kt | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 src/main/kotlin/com/supwisdom/dlpay/shop/controller/shop_controller.kt diff --git a/src/main/kotlin/com/supwisdom/dlpay/shop/controller/shop_controller.kt b/src/main/kotlin/com/supwisdom/dlpay/shop/controller/shop_controller.kt new file mode 100644 index 00000000..c92f7f52 --- /dev/null +++ b/src/main/kotlin/com/supwisdom/dlpay/shop/controller/shop_controller.kt @@ -0,0 +1,16 @@ +package com.supwisdom.dlpay.shop.controller + +import org.springframework.web.bind.annotation.RequestMapping +import org.springframework.web.bind.annotation.RestController + +/** + * Created by shuwei on 2019/4/15. + */ +@RestController +@RequestMapping("/shop") +class ShopController{ + @RequestMapping("/open") + fun openAccount(){ + + } +} \ No newline at end of file -- 2.17.1