| | |
| | | package com.vci.web.controller; |
| | | |
| | | import com.vci.starter.web.annotation.controller.VciUnCheckRight; |
| | | import com.vci.starter.web.annotation.log.VciBusinessLog; |
| | | import com.vci.starter.web.pagemodel.BaseResult; |
| | | import com.vci.web.pageModel.UIContentVO; |
| | |
| | | * @return UI上下文 |
| | | */ |
| | | @GetMapping("/getUIContentByBtmTypeAndId") |
| | | @VciUnCheckRight |
| | | public UIContentVO getUIContentByBtmTypeAndId(String btmType,String id){ |
| | | return uiService.getUIContentByBtmTypeAndId(btmType,id); |
| | | } |
| | |
| | | * @return 表单的定义 |
| | | */ |
| | | @GetMapping("/getFormDefineById") |
| | | @VciUnCheckRight |
| | | public UIFormDefineVO getFormDefineById(String btmType,String id){ |
| | | return uiService.getFormById(btmType,id); |
| | | } |