feiyu02
2025-12-20 5a003a42d2b34e8362910ac1d3e5a8866768e5fe
1
2
3
4
5
6
7
8
9
10
11
12
package cn.flightfeather.supervision.lightshare.service.impl
 
import cn.flightfeather.supervision.domain.ds1.entity.ChangeEffect
import cn.flightfeather.supervision.domain.ds1.mapper.ChangeEffectMapper
import cn.flightfeather.supervision.lightshare.service.ChangeEffectService
import org.springframework.stereotype.Service
 
@Service
class ChangeEffectImpl(val changeEffectMapper: ChangeEffectMapper) : ChangeEffectService {
    override fun findAll(): List<ChangeEffect> = changeEffectMapper.selectAll()
 
}