ItemCategoryServiceImpl

@Service
class ItemCategoryServiceImpl(itemCategoryRepository: ItemCategoryRepository) : ItemCategoryService

道具类别服务实现

Constructors

Link copied to clipboard
constructor(itemCategoryRepository: ItemCategoryRepository)

Functions

Link copied to clipboard
open override fun listByCondition(specification: ItemCategorySpecification): List<ItemCategoryView>
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: SaveItemCategoryInput): ItemCategoryView
Link copied to clipboard
@Transactional(rollbackFor = [Exception::class])
open override fun update(command: UpdateItemCategoryInput): ItemCategoryView