package com.flightfeather.uav.domain.mapper
|
|
import com.flightfeather.uav.domain.MyMapper
|
import com.flightfeather.uav.domain.entity.Assessment
|
import com.flightfeather.uav.lightshare.bean.AssessmentVo
|
import org.apache.ibatis.annotations.Mapper
|
|
@Mapper
|
interface AssessmentMapper : MyMapper<Assessment> {
|
|
fun getAssessment(): List<AssessmentVo>
|
}
|