| | |
| | | import com.vci.corba.common.PLException; |
| | | import com.vci.corba.omd.atm.AttributeDef; |
| | | import com.vci.dto.OsAttributeDTO; |
| | | import com.vci.starter.web.pagemodel.BaseQueryObject; |
| | | import com.vci.starter.web.pagemodel.BaseResult; |
| | | import com.vci.starter.web.pagemodel.DataGrid; |
| | | import com.vci.starter.web.pagemodel.*; |
| | | import com.vci.pagemodel.OsAttributeVO; |
| | | import org.springframework.web.multipart.MultipartFile; |
| | | |
| | |
| | | */ |
| | | public interface OsAttributeServiceI extends OsBaseServiceI{ |
| | | |
| | | /** |
| | | * 获取树状 |
| | | * @param treeQueryObject |
| | | * @return |
| | | */ |
| | | List<Tree> getTreeAttributesByBtmName(TreeQueryObject treeQueryObject); |
| | | /** |
| | | * 获取默认的属性 |
| | | * @return 默认的属性列表 |
| | |
| | | * 根据业务类型/链接类型获取属性信息 |
| | | * @param btName 业务类型/链接类型 |
| | | * @param typeFlag 0:业务类型,1:链接类型 |
| | | * @param isDefault 是否包含默认属性 true:包含,false 不包含 |
| | | * @return |
| | | */ |
| | | List<OsAttributeVO> getOsAttributeVOSByBtName(String btName,int typeFlag)throws Exception; |
| | | List<OsAttributeVO> getOsAttributeVOSByBtName(String btName,int typeFlag,boolean isDefault)throws Exception; |
| | | |
| | | } |