ZhangYuanSheng1217 / RestfulTool

一套 Restful 服务开发辅助工具集
GNU Affero General Public License v3.0
262 stars 90 forks source link

kotlin 下的映射不支持 #44

Closed CodingOX closed 4 years ago

CodingOX commented 4 years ago

比如有如下代码:

@RestController
@RequestMapping("/v1/hospital-group-rela")
class HospitalGroupRelaController {

    @Autowired
    private lateinit var relaService: XxService

    @PostMapping
    fun addRela(@RequestBody addReq: HosGroupRelaAddBo): ApiRet<Boolean> {
        return ApiRet(relaService.addHosGroupKeyRela(addReq))
    }

插件无法识别!

ZhangYuanSheng1217 commented 4 years ago

由于本人对kotlin不是太熟,所以暂时不支持哈