| | |
| | | import com.vci.ubcs.omd.vo.BtmTypeVO; |
| | | import com.vci.ubcs.omd.vo.BtmTypeAttributeVO; |
| | | import com.vci.ubcs.omd.vo.LinkTypeVO; |
| | | import io.swagger.models.auth.In; |
| | | import org.springblade.core.log.exception.ServiceException; |
| | | import org.springblade.core.mp.base.BaseService; |
| | | import org.springblade.core.tool.api.R; |
| | |
| | | |
| | | /** |
| | | * 获取引用某个生命周期的业务类型 |
| | | * @param lifeOid 生命周期的主键 |
| | | * @param lifeId 生命周期的编号 |
| | | * @return 业务类型显示对象 |
| | | */ |
| | | List<BtmTypeVO> selectByLifeId(String lifeId); |
| | | |
| | | /** |
| | | * 获取引用某些生命周期的业务类型 |
| | | * @param lifeIds 生命周期的编号集合 |
| | | * @return 业务类型显示对象 |
| | | */ |
| | | List<BtmTypeVO> selectByLifeIds(Collection<String> lifeIds); |
| | | |
| | | /** |
| | | * 统计引用某个生命周期的业务类型 |
| | | * @param lifeOid 生命周期的主键 |
| | | * @param lifeId 生命周期的编号 |
| | | * @return 个数 |
| | | */ |
| | | Integer countByLifeId(String lifeId); |
| | | |
| | | /** |
| | | * 统计引用某些生命周期的业务类型 |
| | | * @param lifeIds 生命周期的编号集合 |
| | | * @return 个数 |
| | | */ |
| | | Integer countByLifeIds(Collection<String> lifeIds); |
| | | } |