123456789101112131415161718192021 |
- package com.huimv.busi.xt.model;
- import java.util.Map;
- import com.huimv.busi.base.dto.ResponseBean;
- /**
- * 下拉框树型服务类
- * @author hongjun.hu
- * @version: 1.0
- */
- public interface XtDropDownTreeService extends BaseService {
- /**
- * 获取下拉树形数据
- * @param qhbm 区划编码
- * @param model 数据类型 [1:为获取初始化数据 2:为获取异步数据]
- * @return ResponseBean result[1:TreeNodeDTO 2:List<TreeNodeDTO>] returnCode[1:成功 -1:失败]
- */
- @SuppressWarnings("rawtypes")
- public ResponseBean getXzqhTreeData(Map para) throws Exception;
- }
|