Package net.risesoft.service
Interface CustomViewService
-
- All Known Implementing Classes:
CustomViewServiceImpl
public interface CustomViewService- Author:
- qinman, zhangchongjie
- Date:
- 2022/12/20
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddelCustomView(String viewType)删除自定义视图net.risesoft.pojo.Y9Result<List<CustomViewModel>>listCustomView(String viewType)获取自定义视图voidsaveCustomView(String jsonData)保存自定义视图
-
-
-
Method Detail
-
delCustomView
void delCustomView(String viewType)
删除自定义视图- Parameters:
viewType- 视图类型
-
listCustomView
net.risesoft.pojo.Y9Result<List<CustomViewModel>> listCustomView(String viewType)
获取自定义视图- Parameters:
viewType- 视图类型- Returns:
-
saveCustomView
void saveCustomView(String jsonData)
保存自定义视图- Parameters:
jsonData- 自定义视图
-
-