Package net.risesoft.service.impl
Class AttachmentConfServiceImpl
- java.lang.Object
-
- net.risesoft.service.impl.AttachmentConfServiceImpl
-
- All Implemented Interfaces:
AttachmentConfService
@Service @Transactional(value="rsTenantTransactionManager", readOnly=true) public class AttachmentConfServiceImpl extends Object implements AttachmentConfService
-
-
Constructor Summary
Constructors Constructor Description AttachmentConfServiceImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AttachmentConffindById(String id)根据唯一标示查找附件配置List<AttachmentConf>listByAttachmentType(String attachmentType, Integer configType)Description:根据附件类型查找附件配置voidremoveAttachmentConfs(String[] attachmentConfIds)根据附件配置唯一标示数据删除附件配置voidremoveByAttachmentType(String attachmentType)Description:移除指定附件类型的所有附件配置voidsaveOrUpdate(AttachmentConf attachmentConf)保存或更新附件配置voidupdateOrder(String[] idAndTabIndexs)排序
-
-
-
Method Detail
-
findById
public AttachmentConf findById(String id)
Description copied from interface:AttachmentConfService根据唯一标示查找附件配置- Specified by:
findByIdin interfaceAttachmentConfService- Returns:
-
listByAttachmentType
public List<AttachmentConf> listByAttachmentType(String attachmentType, Integer configType)
Description copied from interface:AttachmentConfServiceDescription:根据附件类型查找附件配置- Specified by:
listByAttachmentTypein interfaceAttachmentConfService- Returns:
-
removeByAttachmentType
@Transactional public void removeByAttachmentType(String attachmentType)
Description copied from interface:AttachmentConfServiceDescription:移除指定附件类型的所有附件配置- Specified by:
removeByAttachmentTypein interfaceAttachmentConfService
-
removeAttachmentConfs
@Transactional public void removeAttachmentConfs(String[] attachmentConfIds)
Description copied from interface:AttachmentConfService根据附件配置唯一标示数据删除附件配置- Specified by:
removeAttachmentConfsin interfaceAttachmentConfService
-
saveOrUpdate
@Transactional public void saveOrUpdate(AttachmentConf attachmentConf)
Description copied from interface:AttachmentConfService保存或更新附件配置- Specified by:
saveOrUpdatein interfaceAttachmentConfService
-
updateOrder
@Transactional public void updateOrder(String[] idAndTabIndexs)
Description copied from interface:AttachmentConfService排序- Specified by:
updateOrderin interfaceAttachmentConfService- Parameters:
idAndTabIndexs- "id:tabIndex"形式的数组
-
-