Package net.risesoft.service
Interface AttachmentConfService
-
- All Known Implementing Classes:
AttachmentConfServiceImpl
public interface AttachmentConfService
-
-
Method Summary
All Methods Instance Methods Abstract 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
AttachmentConf findById(String id)
根据唯一标示查找附件配置- Parameters:
id-- Returns:
-
listByAttachmentType
List<AttachmentConf> listByAttachmentType(String attachmentType, Integer configType)
Description:根据附件类型查找附件配置- Parameters:
attachmentType-configType-- Returns:
-
removeByAttachmentType
void removeByAttachmentType(String attachmentType)
Description:移除指定附件类型的所有附件配置- Parameters:
attachmentType-
-
removeAttachmentConfs
void removeAttachmentConfs(String[] attachmentConfIds)
根据附件配置唯一标示数据删除附件配置- Parameters:
attachmentConfIds-
-
saveOrUpdate
void saveOrUpdate(AttachmentConf attachmentConf)
保存或更新附件配置- Parameters:
attachmentConf-
-
updateOrder
void updateOrder(String[] idAndTabIndexs)
排序- Parameters:
idAndTabIndexs- "id:tabIndex"形式的数组
-
-