ItemPocketServiceImpl

@Service
class ItemPocketServiceImpl(itemPocketRepository: ItemPocketRepository) : ItemPocketService

道具口袋服务实现

Constructors

Link copied to clipboard
constructor(itemPocketRepository: ItemPocketRepository)

Functions

Link copied to clipboard
open override fun listByCondition(specification: ItemPocketSpecification): List<ItemPocketView>
Link copied to clipboard
@Transactional(rollbackFor = [Exception::class])
open override fun removeById(id: Long)
Link copied to clipboard
@Transactional(rollbackFor = [Exception::class])
open override fun save(command: SaveItemPocketInput): ItemPocketView
Link copied to clipboard
@Transactional(rollbackFor = [Exception::class])
open override fun update(command: UpdateItemPocketInput): ItemPocketView