xiejun
2024-09-02 eee70eddb1464593aa08a0b108e4a1af01ce8a2f
Source/plt-web/plt-web-parent/plt-web/src/main/java/com/vci/web/service/OsAttributeServiceI.java
@@ -3,9 +3,7 @@
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;
@@ -21,6 +19,12 @@
 */
public interface OsAttributeServiceI extends OsBaseServiceI{
   /**
    * 获取树状
    * @param treeQueryObject
    * @return
    */
   List<Tree> getTreeAttributesByBtmName(TreeQueryObject treeQueryObject);
   /**
    * 获取默认的属性
    * @return 默认的属性列表
@@ -182,8 +186,9 @@
    * 根据业务类型/链接类型获取属性信息
    * @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;
}