package com.gxzc.zen.persistence.controller import com.gxzc.zen.persistence.service.ISysDeptService import org.springframework.beans.factory.annotation.Autowired import org.springframework.stereotype.Controller import org.springframework.web.bind.annotation.RequestMapping @Controller @RequestMapping("example") class ExampleController { @Autowired lateinit var sysDeptService: ISysDeptService @RequestMapping("/test") fun test() { } }