Package net.risesoft.service.impl
Class AttachmentTypeServiceImpl
- java.lang.Object
-
- net.risesoft.service.impl.AttachmentTypeServiceImpl
-
- All Implemented Interfaces:
AttachmentTypeService
@Service @Transactional(value="rsTenantTransactionManager", readOnly=true) public class AttachmentTypeServiceImpl extends Object implements AttachmentTypeService
-
-
Constructor Summary
Constructors Constructor Description AttachmentTypeServiceImpl()
-
Method Summary
All Methods Instance Methods Concrete 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
public AttachmentType getById(String id)
Description copied from interface:AttachmentTypeServiceDescription:获取附件类型信息- Specified by:
getByIdin interfaceAttachmentTypeService- Returns:
-
getByMark
public AttachmentType getByMark(String mark)
Description copied from interface:AttachmentTypeServiceDescription:根据标识获取附件类型信息- Specified by:
getByMarkin interfaceAttachmentTypeService- Returns:
-
listAll
public List<AttachmentType> listAll()
Description copied from interface:AttachmentTypeServiceDescription:获取所有附件类型信息- Specified by:
listAllin interfaceAttachmentTypeService- Returns:
-
pageAll
public org.springframework.data.domain.Page<AttachmentType> pageAll(int page, int rows)
Description copied from interface:AttachmentTypeServiceDescription:获取分页的附件类型信息- Specified by:
pageAllin interfaceAttachmentTypeService- Returns:
-
remove
@Transactional(readOnly=false) public void remove(String id)
Description copied from interface:AttachmentTypeServiceDescription:移除附件类型信息- Specified by:
removein interfaceAttachmentTypeService
-
save
@Transactional(readOnly=false) public AttachmentType save(AttachmentType AttachmentType)
Description copied from interface:AttachmentTypeServiceDescription:保存附件类型信息- Specified by:
savein interfaceAttachmentTypeService- Returns:
-
saveOrUpdate
@Transactional(readOnly=false) public AttachmentType saveOrUpdate(AttachmentType AttachmentType)
Description copied from interface:AttachmentTypeServiceDescription:保存或更新附件类型信息- Specified by:
saveOrUpdatein interfaceAttachmentTypeService- Returns:
-
-