Package net.risesoft.api
Class ItemViewConfApiImpl
- java.lang.Object
-
- net.risesoft.api.ItemViewConfApiImpl
-
- All Implemented Interfaces:
ItemViewConfApi
@RestController @RequestMapping(value="/services/rest/itemViewConf", produces="application/json") public class ItemViewConfApiImpl extends Object implements ItemViewConfApi列表视图接口- Author:
- qinman, zhangchongjie
- Date:
- 2022/12/20
-
-
Constructor Summary
Constructors Constructor Description ItemViewConfApiImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description net.risesoft.pojo.Y9Result<List<ItemViewConfModel>>findByItemIdAndViewType(String tenantId, String itemId, String viewType)获取事项视图配置列表
-
-
-
Method Detail
-
findByItemIdAndViewType
public net.risesoft.pojo.Y9Result<List<ItemViewConfModel>> findByItemIdAndViewType(@RequestParam String tenantId, @RequestParam String itemId, @RequestParam String viewType)
获取事项视图配置列表- Specified by:
findByItemIdAndViewTypein interfaceItemViewConfApi- Parameters:
tenantId- 租户iditemId- 事项idviewType- 视图类型- Returns:
Y9Result<List<ItemViewConfModel>>通用请求返回对象 -data是事项视图配置列表- Since:
- 9.6.6
-
-