| | |
| | | package com.vci.web.service; |
| | | |
| | | import com.vci.corba.omd.btm.BizType; |
| | | import com.vci.starter.web.exception.VciBaseException; |
| | | import com.vci.web.dto.OsBtmTypeExportDTO; |
| | | import plm.corba.btm.BtmItem; |
| | | |
| | | import java.util.Collection; |
| | | import java.util.List; |
| | |
| | | * 批量添加业务类型 |
| | | * @param btmItems 业务类型的对象 |
| | | */ |
| | | void batchAddBtm(Collection<BtmItem> btmItems); |
| | | void batchAddBtm(Collection<BizType> btmItems); |
| | | |
| | | /** |
| | | * 批量添加业务类型 |
| | | * @param btmItems 业务类型的对象 |
| | | */ |
| | | void batchEditBtm(Collection<BtmItem> btmItems); |
| | | void batchEditBtm(Collection<BizType> btmItems); |
| | | |
| | | /** |
| | | * 导出业务类型的信息到Word中 |