GrowthRateServiceImpl

@Service
class GrowthRateServiceImpl(growthRateRepository: GrowthRateRepository) : GrowthRateService

成长速率服务实现

Constructors

Link copied to clipboard
constructor(growthRateRepository: GrowthRateRepository)

Functions

Link copied to clipboard
open override fun listByCondition(specification: GrowthRateSpecification): List<GrowthRateView>

按条件查询成长速率列表

Link copied to clipboard
@Transactional(rollbackFor = [Exception::class])
open override fun removeById(id: Long)

按 ID 删除成长速率

Link copied to clipboard
@Transactional(rollbackFor = [Exception::class])
open override fun save(command: SaveGrowthRateInput): GrowthRateView

保存成长速率

Link copied to clipboard
@Transactional(rollbackFor = [Exception::class])
open override fun update(command: UpdateGrowthRateInput): GrowthRateView

更新成长速率