Package net.risesoft.service
Interface AttachmentTypeService
-
- All Known Implementing Classes:
AttachmentTypeServiceImpl
public interface AttachmentTypeService
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AttachmentTypegetById(String id)Description:获取附件类型信息AttachmentTypegetByMark(String mark)Description:根据标识获取附件类型信息List<AttachmentType>listAll()Description:获取所有附件类型信息org.springframework.data.domain.Page<AttachmentType>pageAll(int page, int rows)Description:获取分页的附件类型信息voidremove(String id)Description:移除附件类型信息AttachmentTypesave(AttachmentType AttachmentType)Description:保存附件类型信息AttachmentTypesaveOrUpdate(AttachmentType AttachmentType)Description:保存或更新附件类型信息
-
-
-
Method Detail
-
getById
AttachmentType getById(String id)
Description:获取附件类型信息- Parameters:
id-- Returns:
-
getByMark
AttachmentType getByMark(String mark)
Description:根据标识获取附件类型信息- Parameters:
mark-- Returns:
-
listAll
List<AttachmentType> listAll()
Description:获取所有附件类型信息- Returns:
-
pageAll
org.springframework.data.domain.Page<AttachmentType> pageAll(int page, int rows)
Description:获取分页的附件类型信息- Parameters:
page-rows-- Returns:
-
remove
void remove(String id)
Description:移除附件类型信息- Parameters:
id-
-
save
AttachmentType save(AttachmentType AttachmentType)
Description:保存附件类型信息- Parameters:
AttachmentType-- Returns:
-
saveOrUpdate
AttachmentType saveOrUpdate(AttachmentType AttachmentType)
Description:保存或更新附件类型信息- Parameters:
AttachmentType-- Returns:
-
-